mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-06 00:01:14 -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}"
|
|
}
|