Re: [ansible-project] outputs to a multivalue with_items list.

2024-02-05 Thread 'Rowe, Walter P. (Fed)' via Ansible Project
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 }} -

[ansible-project] outputs to a multivalue with_items list.

2024-02-05 Thread John Simmons
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