mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-19 19:00:43 -04:00
10 lines
188 B
HCL
10 lines
188 B
HCL
resource "test_object" "A" {}
|
|
|
|
resource "test_object" "B" {
|
|
test_string = "${test_object.A.test_string}"
|
|
}
|
|
|
|
resource "test_object" "C" {
|
|
test_string = "${test_object.B.test_string}"
|
|
}
|