Files
opentf/internal/command/testdata/test/destroyed_mod_outputs/main.tf
2024-12-10 16:34:25 +02:00

10 lines
131 B
HCL

variable "numbers" {
type = set(string)
}
module "mod" {
source = "./mod"
for_each = var.numbers
val = each.key
}