Files
terraform-course/module-flatten/ssm-parameter/variables.tf
T
2020-12-05 14:14:28 +01:00

11 lines
171 B
Terraform

variable "parameters" {
type = list(object({
prefix = string
parameters = list(object({
name = string
value = string
}))
}))
default = []
}