github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/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 }