mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
docsite: cloudstack: fix missing quotes in example
This commit is contained in:
@@ -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
|
- name: ensure firewall ports opened
|
||||||
cs_firewall:
|
cs_firewall:
|
||||||
ip_address: {{ public_ip }}
|
ip_address: "{{ public_ip }}"
|
||||||
port: {{ item.port }}
|
port: "{{ item.port }}"
|
||||||
cidr: "{{ item.cidr | default('0.0.0.0/0') }}"
|
cidr: "{{ item.cidr | default('0.0.0.0/0') }}"
|
||||||
with_items: cs_firewall
|
with_items: cs_firewall
|
||||||
when: public_ip is defined
|
when: public_ip is defined
|
||||||
|
|||||||
Reference in New Issue
Block a user