vars.tf 557 B

12345678910111213141516
  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 "responsible_accounts" { type = map(list(string)) }
  11. variable "aws_account_id" { type = string }
  12. variable "aws_partition" { type = string }
  13. variable "aws_region" { type = string }
  14. variable "environment" { type = string }
  15. variable "key_pairs" { type = map }