mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
11 lines
124 B
HCL
11 lines
124 B
HCL
locals {
|
|
items = toset(["a", "b"])
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
for_each = local.items
|
|
|
|
id = each.key
|
|
}
|