https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html#with-items
with_items is replaced by "loop" and simply iterates over a list. In the task
you can reference any of the dictionary elements of the specific list entry.
debug:
msg: "{{ item.name }} - {{ item.disabled }} -
Hi Hope you can help me,
I have a step in a playbook that makes a uri call to the gihub api servers
and returns all the info regarding all of our repo's. I need to create a
with_items list with information from that json response to have 3 items
per repo(for example) for the next part of the pl