mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
10 lines
124 B
HCL
10 lines
124 B
HCL
locals {
|
|
items = toset(["a", "b"])
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
for_each = local.items
|
|
|
|
id = each.key
|
|
}
|