github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-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 }