- name: Create folder structure ansible.builtin.file: path: "{{ item }}" state: directory loop: - /opt/x - name: Install ansible-galaxy collection ansible.builtin.shell: cmd: "ansible-galaxy collection install {{ item }}" loop: "{{ dependencies.ansible_galaxy_collections }}"