mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 10:00:44 -05:00
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>
This commit is contained in:
9
internal/command/e2etest/testdata/deprecated-values/mod/main.tf
vendored
Normal file
9
internal/command/e2etest/testdata/deprecated-values/mod/main.tf
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
variable "input" {
|
||||
default = "world"
|
||||
deprecated = "This var is deprecated"
|
||||
}
|
||||
|
||||
output "output" {
|
||||
value = "${var.input}"
|
||||
deprecated = "this output is deprecated"
|
||||
}
|
||||
Reference in New Issue
Block a user