Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%graph-builder-plan-dynblock%dynblock.tf

15 lines
198 B
Terraform
Raw Normal View History

2021-09-17 20:53:40 +02:00
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
}
}
}