vars.tf 653 B

1234567891011121314151617181920212223
  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
  18. variable "standard_tags" { type = map(any) }
  19. variable "aws_account_id" { type = string }
  20. variable "aws_partition" { type = string }
  21. variable "account_list" { type = list(any) }