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

8 lines
113 B
HCL

variable "instance_count" {
default = 3
}
resource "aws_instance" "foo" {
count = "${var.instance_count}"
}