1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "accept_invitation" {
- description = "Whether to accept the sharing invitation. Only done once per account."
- type = bool
- }
- variable "share_arn" {
- description = "The ARN of the share to accept."
- type = string
- default = ""
- }
- variable "tgw_id" {
- description = "Transit Gateway ID"
- type = string
- }
- variable "vpc_id" {
- description = "VPC ID of the client"
- type = string
- }
- variable "subnets" {
- description = "List of subnets, one per AZ in the VPC"
- type = list(any)
- }
- variable "route_tables" {
- description = "List of route tables to be routed to the TGW"
- type = list(any)
- }
- # ----------------------------------
- # Below this line are variables inherited from higher levels, so they
- # do not need to be explicitly passed to this module.
- # ----------------------------------
- # Required for remote state, though they can be used elsewhere
- variable "remote_state_bucket" { type = string }
|