--- - name: Remove the users hosts: local tasks: - name: Remove users ansible.builtin.user: name: "{{ item }}" state: absent remove: yes loop: - alice - bob