You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/stacks/stackruntime/testdata/mainbundle/test/map-object-input/map-object-input.tf

13 lines
177 B

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