From d2f829ce8b5aabd9d15f3178b5b040c1a302fe0c Mon Sep 17 00:00:00 2001 From: Douglas Griffith Date: Wed, 16 Oct 2024 07:31:43 -0400 Subject: [PATCH] use standard indentation (#2005) (cherry picked from commit ac793d208d706ad2b91a78579717a811b0ca558f) --- docs/docsite/rst/playbook_guide/playbooks_variables.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/playbook_guide/playbooks_variables.rst b/docs/docsite/rst/playbook_guide/playbooks_variables.rst index 95f9204ad4..18bf3486a4 100644 --- a/docs/docsite/rst/playbook_guide/playbooks_variables.rst +++ b/docs/docsite/rst/playbook_guide/playbooks_variables.rst @@ -85,7 +85,7 @@ If you use a variable without quotes like this: - hosts: app_servers vars: - app_path: {{ base_path }}/22 + app_path: {{ base_path }}/22 You will see: ``ERROR! Syntax Error while loading YAML.`` If you add quotes, Ansible works correctly: @@ -93,7 +93,7 @@ You will see: ``ERROR! Syntax Error while loading YAML.`` If you add quotes, Ans - hosts: app_servers vars: - app_path: "{{ base_path }}/22" + app_path: "{{ base_path }}/22" .. _boolean_variables: