opentofu/terraform/testdata/graph-builder-plan-dynblock/dynblock.tf
2019-06-30 10:16:15 +02:00

15 lines
198 B
HCL

resource "test_thing" "a" {
}
resource "test_thing" "b" {
}
resource "test_thing" "c" {
dynamic "nested" {
for_each = test_thing.a.list
content {
foo = test_thing.b.id
}
}
}