opentofu/internal/command/e2etest/testdata/deprecated-values/mod/main.tf
Andrei Ciobanu 22dc9b2137
Add new CLI arg to control what warnings should be shown for deprecated outputs/variables (#2705)
Signed-off-by: yottta <andrei.ciobanu@opentofu.org>
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
2025-05-08 17:01:40 +03:00

9 lines
170 B
HCL

variable "input" {
default = "world"
deprecated = "This var is deprecated"
}
output "output" {
value = "${var.input}"
deprecated = "this output is deprecated"
}