123456789101112131415161718192021222324 |
- variable "name" {
- description = "Name of the transit gateway."
- type = string
- }
- variable "asn" {
- description = "Unique AS Number for the account."
- type = number
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- # ----------------------------------
- # 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 }
|