Hi,
I have the following /etc/ansible//hosts file
[servers]
1.1.1.1 ansible_user=centos ansible_ssh_private_key_file=keys/1server.pem
when I issue the following command
ansible all -vvvv -m setup
It tries to login as root
however the following works
ansible all -u centos -vvvv -m setup
where am I going wrong?