mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-22 06:40:42 -04:00
8 lines
98 B
HCL
8 lines
98 B
HCL
variable "foo" {}
|
|
|
|
provider "test" {
|
|
foo = "${var.foo}"
|
|
}
|
|
|
|
resource "test_instance" "foo" {
|
|
}
|