variables.tf 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. variable "CLOUD_ID" {
  2. description = "cloud_id of your cloud"
  3. type = string
  4. default = ""
  5. }
  6. variable "FOLDER_ID" {
  7. description = "folder id of first folder"
  8. type = string
  9. default = ""
  10. }
  11. variable "zones" {
  12. description = "Yandex.Cloud default Zone for provisoned resources"
  13. type = list(string)
  14. default = ["ru-central1-a", "ru-central1-b", "ru-central1-c"]
  15. }
  16. variable "network_names" {
  17. description = "Yandex Cloud default Zone for provisoned resources"
  18. type = list(string)
  19. default = ["a", "b", "c"]
  20. }
  21. variable "app_cidrs" {
  22. type = list(string)
  23. default = ["192.168.1.0/24", "192.168.50.0/24", "192.168.70.0/24"]
  24. }
  25. variable "app_cidrs2" {
  26. type = list(string)
  27. default = ["172.16.1.0/24", "172.16.2.0/24", "172.16.3.0/24"]
  28. }
  29. variable "app_cidrs3" {
  30. type = list(string)
  31. default = ["10.10.1.0/24", "10.10.2.0/24", "10.10.3.0/24"]
  32. }
  33. variable "org_id" {
  34. description = "organization_id"
  35. type = string
  36. default = ""
  37. }