opentofu/internal/command/testdata/test/pass_var_inside_variables/main.tf
Siddhartha Sonker 9138470a67
Allowed variable to pass inside variables block (#1488)
Signed-off-by: siddharthasonker95 <158144589+siddharthasonker95@users.noreply.github.com>
2024-06-03 18:44:05 +05:30

10 lines
No EOL
94 B
HCL

variable "var1" {
default = true
}
variable "var2" {
}
output "sss" {
value = var.var2
}