Files
opentf/internal/command/e2etest/testdata/multiple-deprecated-marks-slice-bug/module/main.tf
James Humphries c5fd93482a Fix crash in unmarkDeepWithPathsDeprecated (#3105)
Signed-off-by: James Humphries <james@james-humphries.co.uk>
Signed-off-by: James Humphries <James@james-humphries.co.uk>
Co-authored-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
2025-08-06 15:40:19 +01:00

14 lines
202 B
HCL

output "out1" {
value = "value1"
deprecated = "Use new_out1"
}
output "out2" {
value = "value2"
deprecated = "Use new_out2"
}
output "out3" {
value = "value3"
deprecated = "Use new_out3"
}