terraform/internal/stacks/stackruntime/testdata/mainbundle/test/map-object-input/map-object-input.tf

12 lines
177 B
HCL

variable "input" {
type = map(object({
output = string
}))
}
resource "testing_resource" "main" {
for_each = var.input
id = each.key
value = each.value.output
}