9 lines
102 B
Terraform
9 lines
102 B
Terraform
|
|
resource "test_thing" "a" {
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "test_thing" "b" {
|
||
|
|
nested {
|
||
|
|
foo = test_thing.a.id
|
||
|
|
}
|
||
|
|
}
|