variable "tags" { description = "Tags to add to the resource (in addition to global standard tags)" type = map 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 } variable route_tables { description = "List of route tables to be routed to the TGW" type = list } # ---------------------------------- # Below this line are variables inherited from higher levels, so they # do not need to be explicitly passed to this module. variable "standard_tags" { type = map } variable "aws_partition_alias" { type = string } variable "environment" { type = string } variable "aws_account_id" { type = string } # ---------------------------------- # Required for remote state, though they can be used elsewhere variable "remote_state_bucket" { type = string } variable "aws_region" { type = string } variable "aws_partition" { type = string } variable "common_services_account" { type = string } variable "common_profile" { type = string }