mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 19:52:49 -06:00
15 lines
198 B
Terraform
15 lines
198 B
Terraform
|
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
|
||
|
}
|
||
|
}
|
||
|
}
|