Files
opentf/terraform/testdata/transform-destroy-edge-multi/main.tf
2019-06-30 10:16:15 +02:00

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}"
}