github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/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 }