github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/internal/terraform/testdata/graph-builder-plan-dynblock/dynblock.tf (about) 1 resource "test_thing" "a" { 2 } 3 4 resource "test_thing" "b" { 5 } 6 7 resource "test_thing" "c" { 8 dynamic "nested" { 9 for_each = test_thing.a.list 10 content { 11 foo = test_thing.b.id 12 } 13 } 14 }