github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/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  }