terraform/internal/command/testdata/test/global_var_refs/main.tf
Liam Cervante 430970c02b
terraform test: Fix crash when file level variables reference variables. (#34531)
* terraform test: Fix crash when referencing variables within the file level variable block

* also allow functions within variables blocks

* add tests
2024-01-22 20:00:22 +01:00

7 lines
77 B
HCL

variable "input" {
type = string
}
output "value" {
value = var.input
}