I got an issue when I want to deploy a file with ‘ansible-playbook’ on a converged server. The problem is that I can’t put myself in (root) on this server.
I tried to add ‘become:yes’ on my tasks but the issue is the same…
The issue I got is : FAILED! => {“msg”: “Missing sudo password”}
Ansible can only do what your user account can do, if you don’t have sudo rights then Ansible won’t have these rights either, you could set become: false to avoid the error if all you need to do is manipulate things using your user account.