123456789101112131415161718192021222324252627282930313233343536 |
- variable "allow_any_to_endpoints" {
- description = "Whether to accept the transit gateway sharing invitation. Only done once per account."
- type = bool
- default = false
- }
- variable "enable_nat_gateway" {
- description = "Whether to add a NAT gateway to the VPC"
- type = bool
- default = true
- }
- variable "single_nat_gateway" {
- description = "Whether to add one NAT gateway for the VPC or one NAT gateway per availability zone."
- type = bool
- default = true
- }
- variable "one_nat_gateway_per_az" {
- description = "Whether to add one NAT gateway per availability zone."
- type = bool
- default = false
- }
- variable "vpc_info" {
- description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
- type = map(any)
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- # Inherited
|