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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
177 B
Terraform
Raw Permalink Normal View History

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