blob: 80ec7dc2c62b9924c7983788d79f142e3843b0a4 [file] [log] [blame]
variable "input" {
type = map(object({
output = string
}))
}
resource "testing_resource" "main" {
for_each = var.input
id = each.key
value = each.value.output
}