--- - name: "Create all base tags and their packages" ktdreyer.koji_ansible.koji_tag: name: "{{ item }}" state: present packages: "{{ koji_pkgs }}" with_items: "{{ all_koji_nb_tags }}" - name: "Create all extra tags and their packages" ktdreyer.koji_ansible.koji_tag: name: "{{ item }}" state: present packages: "{{ koji_extra_pkgs }}" with_items: "{{ all_koji_extra_tags }}" - name: "Create all plus tags and their packages" ktdreyer.koji_ansible.koji_tag: name: "{{ item }}" state: present packages: "{{ koji_plus_pkgs }}" with_items: "{{ all_koji_plus_tags }}" ...