vars.tf 476 B

12345678910111213141516171819
  1. # variables from terragrunt.hcl
  2. variable "tags" { type = map(any) }
  3. variable "ami_bucket_name" {
  4. type = string
  5. default = "xdr-shared-amis"
  6. }
  7. variable "vmimport_extra_keys" {
  8. type = list(string)
  9. default = []
  10. description = "Extra keys to grant the vmimport role access to"
  11. }
  12. variable "vmimport_extra_buckets" {
  13. type = list(string)
  14. default = []
  15. description = "Extra buckets to grant the vmimport role access to"
  16. }
  17. # inherited variables