123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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
- variable "account_name" { type = string }
- variable "trusted_ips" { type = list(string) }
- #variable "dns_servers" { type = list(string) }
- variable "dns_info" { type = map(any) }
- variable "cidr_map" { type = map(any) }
- variable "standard_tags" { type = map(any) }
- variable "aws_region" { type = string }
- variable "aws_account_id" { type = string }
- variable "aws_partition" { type = string }
|