vars.tf 476 B

1234567891011121314
  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 "standard_tags" { type = map(any) }
  9. variable "account_list" { type = list(any) }
  10. variable "aws_account_id" { type = string }
  11. variable "aws_partition" { type = string }
  12. variable "aws_region" { type = string }
  13. variable "environment" { type = string }