blob: 8946969775c1a74650ca108293ae05c8111d8c2d [file] [log] [blame]
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
}
}
}