vars.tf 962 B

123456789101112131415161718192021222324252627282930313233343536
  1. variable "allow_any_to_endpoints" {
  2. description = "Whether to accept the transit gateway sharing invitation. Only done once per account."
  3. type = bool
  4. default = false
  5. }
  6. variable "enable_nat_gateway" {
  7. description = "Whether to add a NAT gateway to the VPC"
  8. type = bool
  9. default = true
  10. }
  11. variable "single_nat_gateway" {
  12. description = "Whether to add one NAT gateway for the VPC or one NAT gateway per availability zone."
  13. type = bool
  14. default = true
  15. }
  16. variable "one_nat_gateway_per_az" {
  17. description = "Whether to add one NAT gateway per availability zone."
  18. type = bool
  19. default = false
  20. }
  21. variable "vpc_info" {
  22. description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
  23. type = map(any)
  24. }
  25. variable "tags" {
  26. description = "Tags to add to the resource (in addition to global standard tags)"
  27. type = map(any)
  28. default = {}
  29. }
  30. # Inherited