mirror of
https://github.com/opentofu/opentofu.git
synced 2026-04-28 17:46:50 -04:00
Signed-off-by: siddharthasonker95 <158144589+siddharthasonker95@users.noreply.github.com>
12 lines
167 B
HCL
12 lines
167 B
HCL
variable "input" {
|
|
default = "Hello world"
|
|
}
|
|
|
|
output "notsensitive" {
|
|
value = "${var.input}"
|
|
}
|
|
|
|
output "sensitive" {
|
|
sensitive = true
|
|
value = "${var.input}"
|
|
}
|