opentofu/terraform/test-fixtures/validate-required-var/main.tf

6 lines
74 B
Terraform
Raw Normal View History

2014-07-28 12:43:00 -05:00
variable "foo" {}
resource "aws_instance" "web" {
ami = "${var.foo}"
}