We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8df49e commit 4dce7baCopy full SHA for 4dce7ba
docs/docsite/rst/playbook_guide/playbooks_variables.rst
@@ -85,15 +85,15 @@ If you use a variable without quotes like this:
85
86
- hosts: app_servers
87
vars:
88
- app_path: {{ base_path }}/22
+ app_path: {{ base_path }}/22
89
90
You will see: ``ERROR! Syntax Error while loading YAML.`` If you add quotes, Ansible works correctly:
91
92
.. code-block:: yaml+jinja
93
94
95
96
- app_path: "{{ base_path }}/22"
+ app_path: "{{ base_path }}/22"
97
98
.. _boolean_variables:
99
0 commit comments