12345678910111213141516171819 |
- # variables from terragrunt.hcl
- variable "tags" { type = map(any) }
- variable "ami_bucket_name" {
- type = string
- default = "xdr-shared-amis"
- }
- variable "vmimport_extra_keys" {
- type = list(string)
- default = []
- description = "Extra keys to grant the vmimport role access to"
- }
- variable "vmimport_extra_buckets" {
- type = list(string)
- default = []
- description = "Extra buckets to grant the vmimport role access to"
- }
- # inherited variables
|