mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-09 17:00:15 -04:00
9 lines
125 B
HCL
9 lines
125 B
HCL
variable "foo" {
|
|
default = "default-value"
|
|
}
|
|
|
|
provider "test" {
|
|
value = var.foo
|
|
}
|
|
|
|
resource "test_instance" "foo" {}
|