github.com/hashicorp/packer@v1.14.3/command/test-fixtures/hcl-inspect-with-sensitive-vars/vars.pkr.hcl (about)

     1  
     2  variable "not_sensitive" {
     3    default   = "I am soooo not sensitive"
     4  }
     5  
     6  variable "not_sensitive_unknown" {
     7  }
     8  
     9  variable "sensitive" {
    10    default   = "I am soooo sensitive"
    11    sensitive = true
    12  }
    13  
    14  variable "sensitive_array" {
    15    default   = ["Im supersensitive", "me too !!!!"]
    16    sensitive = true
    17  }
    18  
    19  variable "sensitive_tags" {
    20    default   = {
    21        first_key  = "this-is-mega-sensitive"
    22        second_key = "this-is-also-sensitive"
    23    }
    24    sensitive = true
    25  }
    26  
    27  variable "sensitive_unknown" {
    28    sensitive = true
    29  }