--- # Solution to the confusion in between modules where we can use list and where not ALWAYS REFER DOCUMENTATION - name: User deletion through dictonary format hosts: nodes tasks: - name: Dictonary Method user: name: "{{ item.name }}" state: "{{ item.state }}" loop: - name: single state: absent - name: multi state: absent - name: Tom state: absent ...