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