opentofu/config/test-fixtures/validate-count-int/main.tf

6 lines
78 B
Terraform
Raw Normal View History

2014-10-02 18:51:20 -05:00
variable "foo" {}
resource "aws_instance" "web" {
count = "${var.foo}"
}