variables.tf 564 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ## Variables
  2. variable "tags" {
  3. type = map(string)
  4. default = {}
  5. }
  6. variable "cidr_block" {
  7. type = string
  8. default = ""
  9. }
  10. variable "enable_dns_support" {
  11. type = bool
  12. default = true
  13. }
  14. variable "enable_dns_hostnames" {
  15. type = bool
  16. default = true
  17. }
  18. variable "public_subnet_az" {
  19. type = list(string)
  20. default = [""]
  21. }
  22. variable "public_subnet_cidr" {
  23. type = list(string)
  24. default = [""]
  25. }
  26. variable "private_subnet_az" {
  27. type = string
  28. default = ""
  29. }
  30. variable "private_subnet_cidr" {
  31. type = string
  32. default = ""
  33. }