opentofu/internal/tofu/testdata/validate-variable-ref/main.tf
2023-09-20 15:16:53 +03:00

6 lines
76 B
HCL

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