blob: c19e78eaa2f3a8bf32e6da3d57f832ae56c684bb [file] [log] [blame]
resource "test_object" "A" {
count = 2
lifecycle {
create_before_destroy = true
}
}
resource "test_object" "B" {
count = 2
test_string = test_object.A[*].test_string[count.index]
}