12345678910111213141516171819202122232425262728293031323334353637383940 |
- variable "allow_any_to_endpoints" {
- description = "Whether to accept the transit gateway sharing invitation. Only done once per account."
- type = bool
- default = false
- }
- variable "accept_tgw_invitation" {
- description = "Whether to accept the transit gateway sharing invitation. Only done once per account."
- type = bool
- }
- variable "tgw_id" {
- description = "Transit Gateway ID"
- type = string
- }
- variable "enable_nat_gateway" {
- description = "Whether to add a NAT gateway to the VPC"
- type = bool
- default = false
- }
- variable "tgw_share_arn" {
- description = "The ARN of the share to accept."
- type = string
- default = ""
- }
- 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
|