When using ansible, I authenticate using the following parameters:
-u bob -k -K -b
I get the output I want, but it turns out that Ansible fails publickey authentication on each system.
Selected output from /var/log/secure on one of the recipient systems:
Failed publickey for bob from $IP port $PORT ssh2
Accepted password for bob from $IP port $PORT ssh2
I'm making my through the documentation, but I have yet to find a method to prevent Ansible from attempting to use anything other than just passwd authentication.
Any help is appreciated.