12 lines
332 B
Plaintext
Raw Permalink Normal View History

2020-05-26 15:29:47 +02:00
```hcl
# variables.pkr.hcl
variable "foo" {
2020-10-05 15:27:12 +02:00
type = string
default = "the default value of the `foo` variable"
2020-05-26 15:29:47 +02:00
description = "description of the `foo` variable"
2020-10-05 15:27:12 +02:00
sensitive = false
# When a variable is sensitive all string-values from that variable will be
# obfuscated from Packer's output.
2020-05-26 15:29:47 +02:00
}
```