vars.tf 344 B

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