mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix some small docsite formatting things.
This commit is contained in:
parent
1c29f043b4
commit
bde41bac35
1 changed files with 3 additions and 3 deletions
|
@ -67,7 +67,7 @@ This can be nice as it's right there when you are reading the playbook.
|
||||||
.. _included_variables:
|
.. _included_variables:
|
||||||
|
|
||||||
Variables defined from included files and roles
|
Variables defined from included files and roles
|
||||||
-----------------------------------------------
|
```````````````````````````````````````````````
|
||||||
|
|
||||||
It turns out we've already talked about variables in another place too.
|
It turns out we've already talked about variables in another place too.
|
||||||
|
|
||||||
|
@ -85,13 +85,13 @@ Ansible allows you to
|
||||||
reference variables in your playbooks using the Jinja2 templating system. While you can do a lot of complex
|
reference variables in your playbooks using the Jinja2 templating system. While you can do a lot of complex
|
||||||
things in Jinja, only the basics are things you really need to learn at first.
|
things in Jinja, only the basics are things you really need to learn at first.
|
||||||
|
|
||||||
For instance, in a simple template, you can do something like
|
For instance, in a simple template, you can do something like::
|
||||||
|
|
||||||
My amp goes to {{ max_amp_value }}
|
My amp goes to {{ max_amp_value }}
|
||||||
|
|
||||||
And that will provide the most basic form of variable substitution.
|
And that will provide the most basic form of variable substitution.
|
||||||
|
|
||||||
This is also valid directly in playbooks, and you'll occasionally want to do things like:
|
This is also valid directly in playbooks, and you'll occasionally want to do things like::
|
||||||
|
|
||||||
template: src=foo.cfg.j2 dest={{ remote_install_path}}/foo.cfg
|
template: src=foo.cfg.j2 dest={{ remote_install_path}}/foo.cfg
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue