mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-09 03:58:59 +00:00
Fix bare variable references in docs
This commit is contained in:
parent
947e0f264e
commit
a625bfc8db
6 changed files with 13 additions and 13 deletions
|
|
@ -222,7 +222,7 @@ Now to the fun part. We create a playbook to create our infrastructure we call i
|
|||
ip_address: "{{ public_ip }}"
|
||||
port: "{{ item.port }}"
|
||||
cidr: "{{ item.cidr | default('0.0.0.0/0') }}"
|
||||
with_items: cs_firewall
|
||||
with_items: "{{ cs_firewall }}"
|
||||
when: public_ip is defined
|
||||
|
||||
- name: ensure static NATs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue