mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-22 23:00:53 -05: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}"
|
|
}
|