Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%graph-builder-plan-dynblock%dynblock.tf
2021-09-19 12:00:18 +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
}
}
}