--- - name: Ensure pip is installed ansible.builtin.package: name: - python3 - python3-pip state: present become: true - name: Install Docker SDK and requests for Python ansible.builtin.pip: name: - docker - requests - jsondiff - packaging state: present become: true