opentofu/terraform/testdata/plan-prevent-destroy-count-good/main.tf
2019-06-30 10:16:15 +02:00

5 lines
77 B
HCL

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