691970f923
Ansible now allows you to name the loop var, fixing nested with_items include issue: https://github.com/ansible/ansible/issues/14146# Switching to it for making role future proof.
6 lines
113 B
YAML
6 lines
113 B
YAML
---
|
|
- include: create_clouds_resources.yml
|
|
with_items: "{{ clouds }}"
|
|
loop_control:
|
|
loop_var: item_cloud
|