github.com/hashicorp/packer@v1.14.3/website/content/partials/from-1.5/variables/foo-block.mdx (about)

     1  ```hcl
     2  # variables.pkr.hcl
     3  variable "foo" {
     4      type        = string
     5      default     = "the default value of the `foo` variable"
     6      description = "description of the `foo` variable"
     7      sensitive   = false
     8      # When a variable is sensitive all string-values from that variable will be
     9      # obfuscated from Packer's output.
    10  }
    11  ```