10 lines
185 B
Plaintext
10 lines
185 B
Plaintext
resource "test_object" "A" {}
|
|
|
|
resource "test_object" "B" {
|
|
test_string = "${test_obt.A.test_string}"
|
|
}
|
|
|
|
resource "test_object" "C" {
|
|
test_string = "${test_object.B.test_string}"
|
|
}
|