summaryrefslogtreecommitdiff
path: root/docsite
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2013-08-22 23:29:13 -0500
committerJames Cammarata <jimi@sngx.net>2013-08-22 23:29:13 -0500
commit1f42fd9964cd0f178edaa4d1df68695379b4b3cf (patch)
treee72f38dfe9fbd639636aeab0e04ed8ac26c05ec8 /docsite
parent8262f7bfacc927bc60770b46d360c4b585b40ee6 (diff)
downloadansible-1f42fd9964cd0f178edaa4d1df68695379b4b3cf.tar.gz
Remove references to old-style variables
Fixes #3842
Diffstat (limited to 'docsite')
-rw-r--r--docsite/latest/rst/bestpractices.rst2
-rw-r--r--docsite/latest/rst/playbooks.rst8
2 files changed, 3 insertions, 7 deletions
diff --git a/docsite/latest/rst/bestpractices.rst b/docsite/latest/rst/bestpractices.rst
index b7eb9c1c91..e7616f7497 100644
--- a/docsite/latest/rst/bestpractices.rst
+++ b/docsite/latest/rst/bestpractices.rst
@@ -282,7 +282,7 @@ This makes a dynamic group of hosts matching certain criteria, even if that grou
- hosts: all
tasks:
- - group_by: key=${ansible_distribution}
+ - group_by: key={{ ansible_distribution }}
# now just on the CentOS hosts...
diff --git a/docsite/latest/rst/playbooks.rst b/docsite/latest/rst/playbooks.rst
index 148ee6c91f..a6d63ba2a3 100644
--- a/docsite/latest/rst/playbooks.rst
+++ b/docsite/latest/rst/playbooks.rst
@@ -147,13 +147,9 @@ The `vars` section contains a list of variables and values that can be used in t
These variables can be used later in the playbook like this::
- $varname or ${varname} or {{ varname }}
+ {{ varname }}
-If you ever want to do anything complex like uppercasing a string, {{ varname }} is best, as it uses the Jinja2 templating engine. It is a good idea to get in the habit of using this form most of the time when the output is to be a string.
-
-If just referencing the value of another simple variable though, it's fine to say $x or ${x}. This is common for when a datastructure has a member that is the value of another datastructure.
-
-To learn more about Jinja2, you can optionally see the `Jinja2 docs <http://jinja.pocoo.org/docs/>`_ - though remember that Jinja2 loops and conditionals are only for 'templates' in Ansible, in playbooks, ansible has the 'when' and 'with' keywords for conditionals and loops.
+Variables are passed through the Jinja2 templating engine, and support the use of filters to modify the variable (for example: {{ varname|int }} ensures the variable is interpretted as an integer). To learn more about Jinja2, you can optionally see the `Jinja2 docs <http://jinja.pocoo.org/docs/>`_ - though remember that Jinja2 loops and conditionals are only for 'templates' in Ansible, in playbooks, ansible has the 'when' and 'with' keywords for conditionals and loops.
If there are discovered variables about the system, called 'facts', these variables bubble up back into the playbook, and can be used on each system just like explicitly set variables. Ansible provides several
of these, prefixed with 'ansible', which are documented under 'setup' in the module documentation. Additionally,