github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/internal/durgaform/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  }