mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-07 12:02:04 -04:00
8 lines
101 B
HCL
8 lines
101 B
HCL
locals {
|
|
items = toset(["a", "b"])
|
|
}
|
|
|
|
resource "test_instance" "this" {
|
|
for_each = local.items
|
|
}
|