8 lines
177 B
Plaintext
8 lines
177 B
Plaintext
|
```hcl
|
||
|
# variables.pkr.hcl
|
||
|
variable "foo" {
|
||
|
type = string
|
||
|
default = "the default value of the `foo` variable"
|
||
|
description = "description of the `foo` variable"
|
||
|
}
|
||
|
```
|