Co-authored-by: Sayee <57951841+sayee-jadhav@users.noreply.github.com> Co-authored-by: Alicia Cozine <acozine@users.noreply.github.com> Co-authored-by: Sayee <57951841+sayee-jadhav@users.noreply.github.com>
23 KiB
Using Variables
Ansible uses variables to manage differences between systems. With
Ansible, you can execute tasks and playbooks on multiple different
systems with a single command. To represent the variations among those
different systems, you can create variables with standard YAML syntax,
including lists and dictionaries. You can set these variables in your
playbooks, in your inventory <intro_inventory>
, in re-usable files <playbooks_reuse>
or roles <playbooks_reuse_roles>
, or at the command
line. You can also create variables during a playbook run by registering
the return value or values of a task as a new variable.
You can use the variables you created in module arguments, in conditional "when" statements <playbooks_conditionals>
,
in templates <playbooks_templating>
, and in loops <playbooks_loops>
. The ansible-examples
github repository contains many examples of using variables in
Ansible.
Once you understand the concepts and examples on this page, read
about Ansible facts <vars_and_facts>
, which are
variables you retrieve from remote systems.
Creating valid variable names
Not all strings are valid Ansible variable names. A variable name can
only include letters, numbers, and underscores. Python
keywords and playbook keywords<playbook_keywords>
are not
valid variable names. A variable name cannot begin with a number.
Variable names can begin with an underscore. In many programming languages, variables that begin with an underscore are private. This is not true in Ansible. Variables that begin with an underscore are treated exactly the same as any other variable. Do not rely on this convention for privacy or security.
Valid variable names | Not valid |
---|---|
|
|
|
|
|
|
foo5 , _foo |
5foo , 12 |
Simple variables
Simple variables combine a variable name with a single value. You can
use this syntax (and the syntax for lists and dictionaries shown below)
in a variety of places. See setting_variables
for information on where to set
variables.
Defining simple variables
You can define a simple variable using standard YAML syntax. For example:
remote_install_path: /opt/my_app_config
Referencing simple variables
Once you have defined a variable, use Jinja2 syntax to reference it.
Jinja2 variables use double curly braces. For example, the expression
My amp goes to {{ max_amp_value }}
demonstrates the most
basic form of variable substitution. You can use Jinja2 syntax in
playbooks. For example:
template: src=foo.cfg.j2 dest={{ remote_install_path }}/foo.cfg
In this example, the variable defines the location of a file, which can vary from one system to another.
Note
Ansible allows Jinja2 loops and conditionals in templates <playbooks_templating>
but not in
playbooks. You cannot create a loop of tasks. Ansible playbooks are pure
machine-parseable YAML.
When to quote variables (a YAML gotcha)
If you start a value with {{ foo }}
, you must quote the
whole expression to create valid YAML syntax. If you do not quote the
whole expression, the YAML parser cannot interpret the syntax - it might
be a variable or it might be the start of a YAML dictionary. See the
yaml_syntax
documentation for more guidance on writing YAML.
If you use a variable without quotes like this:
- hosts: app_servers
vars:
app_path: {{ base_path }}/22
You will see: ERROR! Syntax Error while loading YAML.
If
you add quotes, Ansible works correctly:
- hosts: app_servers
vars:
app_path: "{{ base_path }}/22"
Defining variables as lists
You can define variables with multiple values using YAML lists. For example:
region:
- northeast
- southeast
- midwest
Referencing list variables
When you use variables defined as a list (also called an array), you can use individual, specific fields from that list. The first item in a list is item 0, the second item is item 1. For example:
region: "{{ region[0] }}"
The value of this expression would be "northeast".
Dictionary variables
Defining variables as key:value dictionaries
You can define more complex variables using YAML dictionaries. A YAML dictionary maps keys to values. For example:
foo:
field1: one
field2: two
Referencing key:value dictionary variables
When you use variables defined as a key:value dictionary (also called a hash), you can use individual, specific fields from that dictionary using either bracket notation or dot notation:
foo['field1']
foo.field1
Both of these examples reference the same value ("one"). Bracket notation always works. Dot notation can cause problems because some keys collide with attributes and methods of python dictionaries. Use bracket notation if you use keys which start and end with two underscores (which are reserved for special meanings in python) or are any of the known public attributes:
add
, append
, as_integer_ratio
,
bit_length
, capitalize
, center
,
clear
, conjugate
, copy
,
count
, decode
, denominator
,
difference
, difference_update
,
discard
, encode
, endswith
,
expandtabs
, extend
, find
,
format
, fromhex
, fromkeys
,
get
, has_key
, hex
,
imag
, index
, insert
,
intersection
, intersection_update
,
isalnum
, isalpha
, isdecimal
,
isdigit
, isdisjoint
, is_integer
,
islower
, isnumeric
, isspace
,
issubset
, issuperset
, istitle
,
isupper
, items
, iteritems
,
iterkeys
, itervalues
, join
,
keys
, ljust
, lower
,
lstrip
, numerator
, partition
,
pop
, popitem
, real
,
remove
, replace
, reverse
,
rfind
, rindex
, rjust
,
rpartition
, rsplit
, rstrip
,
setdefault
, sort
, split
,
splitlines
, startswith
, strip
,
swapcase
, symmetric_difference
,
symmetric_difference_update
, title
,
translate
, union
, update
,
upper
, values
, viewitems
,
viewkeys
, viewvalues
, zfill
.
Registering variables
You can create variables from the output of an Ansible task with the
task keyword register
. You can use registered variables in
any later tasks in your play. For example:
- hosts: web_servers
tasks:
- shell: /usr/bin/foo
register: foo_result
ignore_errors: True
- shell: /usr/bin/bar
when: foo_result.rc == 5
See playbooks_conditionals
for more examples. Registered
variables may be simple variables, list variables, dictionary variables,
or complex nested data structures. The documentation for each module
includes a RETURN
section describing the return values for
that module. To see the values for a particular task, run your playbook
with -v
.
Registered variables are stored in memory. You cannot cache registered variables for use in future plays. Registered variables are only valid on the host for the rest of the current playbook run.
Registered variables are host-level variables. When you register a
variable in a task with a loop, the registered variable contains a value
for each item in the loop. The data structure placed in the variable
during the loop will contain a results
attribute, that is a
list of all responses from the module. For a more in-depth example of
how this works, see the playbooks_loops
section on using register with a
loop.
Note
If a task fails or is skipped, Ansible still registers a variable
with a failure or skipped status, unless the task is skipped based on
tags. See tags
for
information on adding and using tags.
Referencing nested variables
Many registered variables (and facts <vars_and_facts>
) are nested YAML or JSON
data structures. You cannot access values from these nested data
structures with the simple {{ foo }}
syntax. You must use
either bracket notation or dot notation. For example, to reference an IP
address from your facts using the bracket notation:
{{ ansible_facts["eth0"]["ipv4"]["address"] }}
Using the dot notation:
{{ ansible_facts.eth0.ipv4.address }}
Transforming variables with Jinja2 filters
Jinja2 filters let you transform the value of a variable within a
template expression. For example, the capitalize
filter
capitalizes any value passed to it; the to_yaml
and
to_json
filters change the format of your variable values.
Jinja2 includes many built-in
filters and Ansible supplies many more filters. See playbooks_filters
for
examples.
Where to set variables
You can set variables in a variety of places, including in inventory,
in playbooks, in re-usable files, in roles, and at the command line.
Ansible loads every possible variable it finds, then chooses the
variable to apply based on variable precedence rules <ansible_variable_precedence>
.
Setting variables in inventory
You can set different variables for each individual host, or set
shared variables for a group of hosts in your inventory. For example, if
all machines in the [Boston]
group use
'boston.ntp.example.com' as an NTP server, you can set a group variable.
The intro_inventory
page has details on setting host variables <host_variables>
and group variables <group_variables>
in
inventory.
Setting variables in a playbook
You can define variables directly in a playbook:
- hosts: webservers
vars:
http_port: 80
When you set variables in a playbook, they are visible to anyone who runs that playbook. This is especially useful if you share playbooks widely.
Setting variables in included files and roles
You can set variables in re-usable variables files and/or in
re-usable roles. See playbooks_reuse
for more details.
Setting variables in included variables files lets you separate sensitive variables from playbooks, so you can keep your playbooks under source control and even share them without exposing passwords or other private information. You can do this by using an external variables file, or files, just like this:
---
- hosts: all
remote_user: root
vars:
favcolor: blue
vars_files:
- /vars/external_vars.yml
tasks:
- name: this is just a placeholder
command: /bin/echo foo
The contents of each variables file is a simple YAML dictionary, like this:
---
# in the above example, this would be vars/external_vars.yml
somevar: somevalue
password: magic
Note
You can keep per-host and per-group variables in similar files, see
splitting_out_vars
.
Setting variables at runtime
You can set variables when you run your playbook by passing variables
at the command line using the --extra-vars
(or
-e
) argument. You can also request user input with a
vars_prompt
(see playbooks_prompts
). When you pass variables at the
command line, use a single quoted string (containing one or more
variables) in one of the formats below.
key=value format
Values passed in using the key=value
syntax are
interpreted as strings. Use the JSON format if you need to pass
non-string values (Booleans, integers, floats, lists, and so on).
ansible-playbook release.yml --extra-vars "version=1.23.45 other_variable=foo"
JSON string format
ansible-playbook release.yml --extra-vars '{"version":"1.23.45","other_variable":"foo"}'
ansible-playbook arcade.yml --extra-vars '{"pacman":"mrs","ghosts":["inky","pinky","clyde","sue"]}'
When passing variables with --extra-vars
, you must
escape quotes and other special characters appropriately for both your
markup (e.g. JSON), and for your shell:
ansible-playbook arcade.yml --extra-vars "{\"name\":\"Conan O\'Brien\"}"
ansible-playbook arcade.yml --extra-vars '{"name":"Conan O'\\\''Brien"}'
ansible-playbook script.yml --extra-vars "{\"dialog\":\"He said \\\"I just can\'t get enough of those single and double-quotes"\!"\\\"\"}"
If you have a lot of special characters, use a JSON or YAML file containing the variable definitions.
vars from a JSON or YAML file
ansible-playbook release.yml --extra-vars "@some_file.json"
Variable precedence: Where should I put a variable?
You can set multiple variables with the same name in many different places. When you do this, Ansible loads every possible variable it finds, then chooses the variable to apply based on variable precedence. In other words, the different variables will override each other in a certain order.
Ansible configuration, command-line options, and playbook keywords
can also affect Ansible behavior. In general, variables take precedence,
so that host-specific settings can override more general settings. For
examples and more details on the precedence of these various settings,
see general_precedence_rules
.
Teams and projects that agree on guidelines for defining variables (where to define certain types of variables) usually avoid variable precedence concerns. We suggest you define each variable in one place: figure out where to define a variable, and keep it simple. However, this is not always possible.
Ansible does apply variable precedence, and you might have a use for it. Here is the order of precedence from least to greatest (the last listed variables winning prioritization):
- command line values (for example,
-u my_user
, these are not variables)- role defaults (defined in role/defaults/main.yml)1
- inventory file or script group vars2
- inventory group_vars/all3
- playbook group_vars/all4
- inventory group_vars/*5
- playbook group_vars/*6
- inventory file or script host vars7
- inventory host_vars/*8
- playbook host_vars/*9
- host facts / cached set_facts10
- play vars
- play vars_prompt
- play vars_files
- role vars (defined in role/vars/main.yml)
- block vars (only for tasks in block)
- task vars (only for the task)
- include_vars
- set_facts / registered vars
- role (and include_role) params
- include params
- extra vars (for example,
-e "user=my_user"
)(always win precedence)
In general, Ansible gives higher precedence to variables that were
defined more recently, more actively, and with more explicit scope.
Variables in the the defaults folder inside a role are easily
overridden. Anything in the vars directory of the role overrides
previous versions of that variable in the namespace. Host and/or
inventory variables override role defaults, but do not override explicit
includes like the vars directory or an include_vars
task.
Ansible merges different variables set in inventory so that more
specific settings override more generic settings. For example,
ansible_ssh_user
specified as a group_var has a higher
precedence than ansible_user
specified as a host_var. See
how_we_merge
for more
details on the precedence of variables set in inventory.
Footnotes
Note
Within any section, redefining a var will override the previous
instance. If multiple groups have the same variable, the last one loaded
wins. If you define a variable twice in a play's vars:
section, the second one wins.
Note
The previous describes the default config
hash_behaviour=replace
, switch to merge
to
only partially overwrite.
Scoping variables
You can decide where to set a variable based on the scope you want that value to have. Ansible has three main scopes:
- Global: this is set by config, environment variables and the command line
- Play: each play and contained structures, vars entries (vars; vars_files; vars_prompt), role defaults and vars.
- Host: variables directly associated to a host, like inventory, include_vars, facts or registered task outputs
Inside a template you automatically have access to all variables that are in scope for a host, plus any registered variables, facts, and magic variables.
Tips on where to set variables
You should choose where to define a variable based on the kind of control you might want over values.
Set variables in inventory that deal with geography or behavior.
Since groups are frequently the entity that maps roles onto hosts, you
can often set variables on the group instead of defining them on a role.
Remember: Child groups override parent groups, and host variables
override group variables. See variables_in_inventory
for details on setting host and
group variables.
Set common defaults in a group_vars/all
file. See splitting_out_vars
for
details on how to organize host and group variables in your inventory.
Group variables are generally placed alongside your inventory file, but
they can also be returned by dynamic inventory (see intro_dynamic_inventory
) or
defined in ansible_tower
from the UI or API:
---
# file: /etc/ansible/group_vars/all
# this is the site wide default
ntp_server: default-time.example.com
Set location-specific variables in
group_vars/my_location
files. All groups are children of
the all
group, so variables set here override those set in
group_vars/all
:
---
# file: /etc/ansible/group_vars/boston
ntp_server: boston-time.example.com
If one host used a different NTP server, you could set that in a host_vars file, which would override the group variable:
---
# file: /etc/ansible/host_vars/xyz.boston.example.com
ntp_server: override.example.com
Set defaults in roles to avoid undefined-variable errors. If you
share your roles, other users can rely on the reasonable defaults you
added in the roles/x/defaults/main.yml
file, or they can
easily override those values in inventory or at the command line. See
playbooks_reuse_roles
for more info. For example:
---
# file: roles/x/defaults/main.yml
# if no other value is supplied in inventory or as a parameter, this value will be used
http_port: 80
Set variables in roles to ensure a value is used in that role, and is
not overridden by inventory variables. If you are not sharing your role
with others, you can define app-specific behaviors like ports this way,
in roles/x/vars/main.yml
. If you are sharing roles with
others, putting variables here makes them harder to override, although
they still can by passing a parameter to the role or setting a variable
with -e
:
---
# file: roles/x/vars/main.yml
# this will absolutely be used in this role
http_port: 80
Pass variables as parameters when you call roles for maximum clarity, flexibility, and visibility. This approach overrides any defaults that exist for a role. For example:
roles:
- role: apache
vars:
http_port: 8080
When you read this playbook it is clear that you have chosen to set a
variable or override a default. You can also pass multiple values, which
allows you to run the same role multiple times. See run_role_twice
for more
details. For example:
roles:
- role: app_user
vars:
myname: Ian
- role: app_user
vars:
myname: Terry
- role: app_user
vars:
myname: Graham
- role: app_user
vars:
myname: John
Variables set in one role are available to later roles. You can set
variables in a roles/common_settings/vars/main.yml
file and
use them in other roles and elsewhere in your playbook:
roles:
- role: common_settings
- role: something
vars:
foo: 12
- role: something_else
Note
There are some protections in place to avoid the need to namespace variables. In this example, variables defined in 'common_settings' are available to 'something' and 'something_else' tasks, but tasks in 'something' have foo set at 12, even if 'common_settings' sets foo to 20.
Instead of worrying about variable precedence, we encourage you to
think about how easily or how often you want to override a variable when
deciding where to set it. If you are not sure what other variables are
defined, and you need a particular value, use --extra-vars
(-e
) to override all other variables.
Using advanced variable syntax
For information about advanced YAML syntax used to declare variables
and have more control over the data placed in YAML files used by
Ansible, see playbooks_advanced_syntax
.
about_playbooks
-
An introduction to playbooks
playbooks_conditionals
-
Conditional statements in playbooks
playbooks_filters
-
Jinja2 filters and their uses
playbooks_loops
-
Looping in playbooks
playbooks_reuse_roles
-
Playbook organization by roles
playbooks_best_practices
-
Best practices in playbooks
special_variables
-
List of special variables
- User Mailing List
-
Have a question? Stop by the google group!
- irc.freenode.net
-
#ansible IRC chat channel
Tasks in each role will see their own role's defaults. Tasks defined outside of a role will see the last role's defaults.↩︎
Variables defined in inventory file or provided by dynamic inventory.↩︎
Includes vars added by 'vars plugins' as well as host_vars and group_vars which are added by the default vars plugin shipped with Ansible.↩︎
Includes vars added by 'vars plugins' as well as host_vars and group_vars which are added by the default vars plugin shipped with Ansible.↩︎
Includes vars added by 'vars plugins' as well as host_vars and group_vars which are added by the default vars plugin shipped with Ansible.↩︎
Includes vars added by 'vars plugins' as well as host_vars and group_vars which are added by the default vars plugin shipped with Ansible.↩︎
Variables defined in inventory file or provided by dynamic inventory.↩︎
Includes vars added by 'vars plugins' as well as host_vars and group_vars which are added by the default vars plugin shipped with Ansible.↩︎
Includes vars added by 'vars plugins' as well as host_vars and group_vars which are added by the default vars plugin shipped with Ansible.↩︎
When created with set_facts's cacheable option, variables will have the high precedence in the play, but will be the same as a host facts precedence when they come from the cache.↩︎