github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/command/testdata/show-json/sensitive-values/main.tf (about) 1 variable "test_var" { 2 default = "boop" 3 sensitive = true 4 } 5 6 resource "test_instance" "test" { 7 ami = var.test_var 8 } 9 10 output "test" { 11 value = test_instance.test.ami 12 sensitive = true 13 }