2013-08-09 19:25:13 -04:00
---
layout: "docs"
page_title: "User Variables in Templates"
2014-10-20 16:47:30 -04:00
description: |-
2015-02-21 03:27:04 -05:00
User variables allow your templates to be further configured with variables from the command-line, environmental variables, or files. This lets you parameterize your templates so that you can keep secret tokens, environment-specific data, and other types of information out of your templates. This maximizes the portability and shareability of the template.
2013-08-09 19:25:13 -04:00
---
# User Variables
User variables allow your templates to be further configured with variables
from the command-line, environmental variables, or files. This lets you
parameterize your templates so that you can keep secret tokens,
environment-specific data, and other types of information out of your
2014-10-22 15:22:57 -04:00
templates. This maximizes the portability and shareability of the template.
2013-08-09 19:25:13 -04:00
Using user variables expects you know how
[configuration templates ](/docs/templates/configuration-templates.html ) work.
If you don't know how configuration templates work yet, please read that
page first.
## Usage
User variables must first be defined in a `variables` section within your
template. Even if you want a variable to default to an empty string, it
2014-10-22 15:22:57 -04:00
must be defined. This explicitness makes it easy for newcomers to your
2013-08-09 19:25:13 -04:00
template to understand what can be modified using variables in your template.
The `variables` section is a simple key/value mapping of the variable
name to a default value. A default value can be the empty string. An
example is shown below:
2014-10-20 13:55:16 -04:00
```javascript
2013-08-09 19:25:13 -04:00
{
"variables": {
"aws_access_key": "",
"aws_secret_key": ""
},
"builders": [{
"type": "amazon-ebs",
"access_key": "{{user `aws_access_key` }}",
"secret_key": "{{user `aws_secret_key` }}",
2014-10-20 13:55:16 -04:00
// ...
2013-08-09 19:25:13 -04:00
}]
}
2014-10-20 13:55:16 -04:00
```
2013-08-09 19:25:13 -04:00
In the above example, the template defines two variables: `aws_access_key` and
`aws_secret_key` . They default to empty values.
Later, the variables are used within the builder we defined in order to
configure the actual keys for the Amazon builder.
2013-08-31 20:38:38 -04:00
If the default value is `null` , then the user variable will be _required_ .
This means that the user must specify a value for this variable or template
validation will fail.
2013-08-09 19:25:13 -04:00
Using the variables is extremely easy. Variables are used by calling
the user function in the form of < code > {{user ` variable` }}< / code > .
2013-09-18 19:18:39 -04:00
This function can be used in _any value_ within the template, in
2013-08-09 19:25:13 -04:00
builders, provisioners, _anything_ . The user variable is available globally
within the template.
2013-12-28 11:34:17 -05:00
## Environmental Variables
Environmental variables can be used within your template using user
variables. The `env` function is available _only_ within the default value
of a user variable, allowing you to default a user variable to an
environmental variable. An example is shown below:
2014-10-20 13:55:16 -04:00
```javascript
2013-12-28 11:34:17 -05:00
{
"variables": {
"my_secret": "{{env `MY_SECRET` }}",
},
2014-10-20 13:55:16 -04:00
// ...
2013-12-28 11:34:17 -05:00
}
2014-10-20 13:55:16 -04:00
```
2013-12-28 11:34:17 -05:00
This will default "my\_secret" to be the value of the "MY\_SECRET"
environmental variable (or the empty string if it does not exist).
2014-10-20 13:55:16 -04:00
-> **Why can't I use environmental variables elsewhere?**
2013-12-28 11:34:17 -05:00
User variables are the single source of configurable input to a template.
2014-10-20 13:55:16 -04:00
We felt that having environmental variables used _anywhere_ in a
2013-12-28 11:34:17 -05:00
template would confuse the user about the possible inputs to a template.
By allowing environmental variables only within default values for user
variables, user variables remain as the single source of input to a template
2014-10-20 13:55:16 -04:00
that a user can easily discover using `packer inspect` .
2013-12-28 11:34:17 -05:00
2013-08-09 19:25:13 -04:00
## Setting Variables
Now that we covered how to define and use variables within a template,
the next important point is how to actually set these variables. Packer
exposes two methods for setting variables: from the command line or
from a file.
### From the Command Line
To set variables from the command line, the `-var` flag is used as
a parameter to `packer build` (and some other commands). Continuing our example
above, we could build our template using the command below. The command
is split across multiple lines for readability, but can of course be a single
line.
2014-10-20 13:55:16 -04:00
```text
2013-08-09 19:25:13 -04:00
$ packer build \
-var 'aws_access_key=foo' \
-var 'aws_secret_key=bar' \
template.json
```
As you can see, the `-var` flag can be specified multiple times in order
to set multiple variables. Also, variables set later on the command-line
override earlier set variables if it has already been set.
Finally, variables set from the command-line override all other methods
of setting variables. So if you specify a variable in a file (the next
method shown), you can override it using the command-line.
### From a File
Variables can also be set from an external JSON file. The `-var-file`
flag reads a file containing a basic key/value mapping of variables to
values and sets those variables. The JSON file is simple:
2014-10-20 13:55:16 -04:00
```javascript
2013-08-09 19:25:13 -04:00
{
"aws_access_key": "foo",
"aws_secret_key": "bar"
}
2014-10-20 13:55:16 -04:00
```
2013-08-09 19:25:13 -04:00
It is a single JSON object where the keys are variables and the values are
the variable values. Assuming this file is in `variables.json` , we can
build our template using the following command:
2014-10-20 13:55:16 -04:00
```text
2013-08-09 19:25:13 -04:00
$ packer build -var-file=variables.json template.json
```
The `-var-file` flag can be specified multiple times and variables from
multiple files will be read and applied. As you'd expect, variables read
from files specified later override a variable set earlier if it has
already been set.
And as mentioned above, no matter where a `-var-file` is specified, a
`-var` flag on the command line will always override any variables from
a file.