mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-04 19:00:13 -05:00
13 lines
167 B
HCL
13 lines
167 B
HCL
variable "input" {
|
|
default = "Hello world"
|
|
}
|
|
|
|
output "notsensitive" {
|
|
value = "${var.input}"
|
|
}
|
|
|
|
output "sensitive" {
|
|
sensitive = true
|
|
value = "${var.input}"
|
|
}
|