mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
9 lines
152 B
HCL
9 lines
152 B
HCL
resource "test_object" "A" {
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "test_object" "B" {
|
|
test_string = "${test_object.A.id}"
|
|
}
|