vars.tf 647 B

123456789101112131415161718192021222324
  1. variable "name" {
  2. description = "Name of the transit gateway."
  3. type = string
  4. }
  5. variable "asn" {
  6. description = "Unique AS Number for the account."
  7. type = number
  8. }
  9. variable "tags" {
  10. description = "Tags to add to the resource (in addition to global standard tags)"
  11. type = map(any)
  12. default = {}
  13. }
  14. # ----------------------------------
  15. # Below this line are variables inherited from higher levels, so they
  16. # do not need to be explicitly passed to this module.
  17. # ----------------------------------
  18. # Required for remote state, though they can be used elsewhere
  19. variable "remote_state_bucket" { type = string }