opentofu/terraform/test-fixtures/validate-variable-ref/main.tf

6 lines
76 B
Terraform
Raw Normal View History

variable "foo" {}
resource "aws_instance" "bar" {
foo = "${var.foo}"
}