mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-18 16:00:48 -04:00
8 lines
117 B
HCL
8 lines
117 B
HCL
resource "test_object" "A" {
|
|
count = 1
|
|
}
|
|
|
|
resource "test_object" "B" {
|
|
test_list = test_object.A.*.test_string
|
|
}
|