github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/command/testdata/apply-sensitive-output/main.tf (about)

     1  variable "input" {
     2    default = "Hello world"
     3  }
     4  
     5  output "notsensitive" {
     6    value = "${var.input}"
     7  }
     8  
     9  output "sensitive" {
    10    sensitive = true
    11    value = "${var.input}"
    12  }