opentofu/internal/command/testdata/plan-sensitive-output/main.tf

13 lines
167 B
Terraform
Raw Permalink Normal View History

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