Files
opentf/internal/command/e2etest/testdata/deprecated-values/mod/main.tf

10 lines
170 B
HCL

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