terraform/internal/command/testdata/apply-sensitive-output/main.tf

13 lines
167 B
HCL

variable "input" {
default = "Hello world"
}
output "notsensitive" {
value = "${var.input}"
}
output "sensitive" {
sensitive = true
value = "${var.input}"
}