terraform/config/testdata/validate-count-user-var/main.tf

6 lines
78 B
HCL

variable "foo" {}
resource "aws_instance" "web" {
count = "${var.foo}"
}