mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-05 18:00:08 -04:00
10 lines
152 B
HCL
10 lines
152 B
HCL
resource "test_object" "A" {
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "test_object" "B" {
|
|
test_string = "${test_object.A.id}"
|
|
}
|