Remove .1 reference from loop

This is not a subitems loop, but a plain with_items loop

Change-Id: Ib83a0badbf0fca82c6c31c4296b50fe463d8a145
This commit is contained in:
Ricardo Carrillo Cruz 2016-05-27 10:30:53 +00:00
parent eba28dfdf1
commit 5938a2a4be
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@
- name: Create per-cloud networks for {{ item_cloud.name }}
os_network:
cloud: "{{ item_cloud.oscc_cloud|default(item_cloud.name) }}"
state: "{{ item.1.state|default(omit) }}"
state: "{{ item.state|default(omit) }}"
name: "{{ item.name }}"
external: "{{ item.external|default(omit) }}"
project: "{{ item.project|default(omit) }}"