vars.tf 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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
  31. variable "account_name" { type = string }
  32. variable "trusted_ips" { type = list(string) }
  33. #variable "dns_servers" { type = list(string) }
  34. variable "dns_info" { type = map(any) }
  35. variable "cidr_map" { type = map(any) }
  36. variable "standard_tags" { type = map(any) }
  37. variable "aws_region" { type = string }
  38. variable "aws_account_id" { type = string }
  39. variable "aws_partition" { type = string }