mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-21 07:00:37 -04:00
16 lines
467 B
HCL
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"
|
|
} |