mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-15 22:10:37 -04:00
7 lines
106 B
HCL
7 lines
106 B
HCL
variable "foo" { default = "bar" }
|
|
|
|
terraform {
|
|
backend "local" {
|
|
path = "${var.foo}"
|
|
}
|
|
}
|