mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
03493f7d46
The validation itself was added a couple weeks ago but I forgot to actually call it. :sad:
8 lines
106 B
HCL
8 lines
106 B
HCL
variable "foo" { default = "bar" }
|
|
|
|
terraform {
|
|
backend "local" {
|
|
path = "${var.foo}"
|
|
}
|
|
}
|