mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 20:52:58 -06:00
16 lines
255 B
HCL
16 lines
255 B
HCL
resource "test_object" "A" {
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "test_object" "B" {
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "test_object" "C" {
|
|
test_string = "${test_object.A.id}-${test_object.B.id}"
|
|
}
|