mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06:00
10 lines
156 B
HCL
10 lines
156 B
HCL
resource "test_object" "A" {
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "test_object" "B" {
|
|
test_list = test_object.A.*.test_string
|
|
}
|