From 1f5047f4acc227645bfaa309bc76bab2e1be6a39 Mon Sep 17 00:00:00 2001 From: Douglas Griffith Date: Sun, 13 Oct 2024 09:30:35 -0400 Subject: [PATCH] use standard indentation --- 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 940c96b5dd..127fc38ec8 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: