blob: 87994ae9fcd60642ed12ce3ca5be81842752d3d1 [file] [log] [blame]
variable "input" {
default = "Hello world"
}
output "notsensitive" {
value = "${var.input}"
}
output "sensitive" {
sensitive = true
value = "${var.input}"
}