vars.tf 300 B

1234567891011
  1. variable "tags" {
  2. type = map(any)
  3. default = {}
  4. }
  5. # ----------------------------------
  6. # Below this line are variables inherited from higher levels, so they
  7. # do not need to be explicitly passed to this module.
  8. variable "is_legacy" { type = bool }
  9. variable "legacy_account" { type = string }