opentofu/command/test-fixtures/backend-new-interp/main.tf
Mitchell Hashimoto 03493f7d46
command: validate backend config
The validation itself was added a couple weeks ago but I forgot to
actually call it. :sad:
2017-03-02 14:07:49 -08:00

8 lines
106 B
HCL

variable "foo" { default = "bar" }
terraform {
backend "local" {
path = "${var.foo}"
}
}