mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-22 01:20:13 -05:00
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}"
|
|
}
|