github.com/hugorut/terraform@v1.1.3/src/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  }