mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
* terraform test: Fix crash when referencing variables within the file level variable block * also allow functions within variables blocks * add tests
7 lines
77 B
HCL
7 lines
77 B
HCL
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
output "value" {
|
|
value = var.input
|
|
}
|