From a9f5837157a2c468cac4fa4ec5c1c4c398600aef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Moser?= Date: Mon, 23 Nov 2015 07:10:47 +0100 Subject: [PATCH] docsite: cloudstack: fix missing quotes in example --- docsite/rst/guide_cloudstack.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/guide_cloudstack.rst b/docsite/rst/guide_cloudstack.rst index 93b4540b098..c798b26ea12 100644 --- a/docsite/rst/guide_cloudstack.rst +++ b/docsite/rst/guide_cloudstack.rst @@ -178,8 +178,8 @@ Now to the fun part. We create a playbook to create our infrastructure we call i - name: ensure firewall ports opened cs_firewall: - ip_address: {{ public_ip }} - port: {{ item.port }} + ip_address: "{{ public_ip }}" + port: "{{ item.port }}" cidr: "{{ item.cidr | default('0.0.0.0/0') }}" with_items: cs_firewall when: public_ip is defined