Getting fatal: [192.168.0.51]: FAILED! => {"changed": false, "msg": "jsondiff is not installed, try 'pip install jsondiff'"} error on fresh ansible install on ubuntu 20.04 via apt. Additionally I installed python3-jsondiff and community.docker from ansible-galaxy. All I’m trying to do is destroy a docker stack using ansible-playbook. My yml looks like this
---
- hosts: 192.168.0.51
tasks:
- name: Remove healthchecks stack
docker_stack:
name: healthchecks
state: absent
What am I missing?