vars.tf 319 B

123456789101112
  1. # variables from terragrunt.hcl
  2. variable tags { type = map }
  3. variable ami_bucket_name {
  4. type = string
  5. default = "xdr-shared-amis"
  6. }
  7. # inherited variables
  8. variable standard_tags { type = map }
  9. variable aws_account_id { type = string }
  10. variable aws_partition { type = string }
  11. variable account_list { type = list }