vars.tf 311 B

1234567891011121314
  1. # variables from terragrunt.hcl
  2. variable tags { type = map }
  3. # inherited variables
  4. variable standard_tags { type = map }
  5. variable aws_account_id { type = string }
  6. variable aws_partition { type = string }
  7. variable customer_account_list {
  8. type = list
  9. default = []
  10. }
  11. variable account_list { type = list }