vars.tf 460 B

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