Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%graph-builder-apply-double-cbd%main.tf

14 lines
208 B
Terraform
Raw Normal View History

2021-09-17 20:53:40 +02:00
resource "test_object" "A" {
lifecycle {
create_before_destroy = true
}
}
resource "test_object" "B" {
test_list = test_object.A.*.test_string
lifecycle {
create_before_destroy = true
}
}