mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
15 lines
198 B
HCL
15 lines
198 B
HCL
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
|
|
}
|
|
}
|
|
}
|