Files
opentf/internal/command/testdata/variables/main.tf
Andrei Ciobanu b5010cb952 Remove GatherVariables methods (#3962)
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
2026-03-31 14:22:31 +03:00

24 lines
305 B
HCL

variable "foo" {
default = "bar"
}
variable "snack" {
default = "popcorn"
}
variable "secret_snack" {
default = "seaweed snacks"
sensitive = true
}
locals {
snack_bar = [var.snack, var.secret_snack]
}
output "foo" {
value = var.foo
}
output "snack" {
value = var.snack
}