Files
opentf/internal/configs/testdata/variable-empty-deprecated/main.tf
Andrei Ciobanu 8a55dc29da fix small pr suggestions
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
2025-04-24 11:07:35 -04:00

16 lines
467 B
HCL

variable "with_empty_deprecated" {
type = string
description = "variable that is having the deprecated field specified but is having no value"
deprecated = ""
}
variable "with_deprecated_only_spaces" {
type = string
description = "variable that is having the deprecated field specified only with blank characters"
deprecated = " "
}
variable "without_deprecated" {
type = string
description = "no deprecated field defined so it should work fine"
}