Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%plan-prevent-destroy-count-bad%main.tf
2021-09-19 12:00:18 +02:00

9 lines
123 B
HCL

resource "aws_instance" "foo" {
count = "1"
current = "${count.index}"
lifecycle {
prevent_destroy = true
}
}