mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 18:56:57 -05:00
Signed-off-by: yottta <andrei.ciobanu@opentofu.org> Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
10 lines
170 B
HCL
10 lines
170 B
HCL
variable "input" {
|
|
default = "world"
|
|
deprecated = "This var is deprecated"
|
|
}
|
|
|
|
output "output" {
|
|
value = "${var.input}"
|
|
deprecated = "this output is deprecated"
|
|
}
|