I am trying to run an Ansible playbook against a server using an account other than the one I am logged on the control machine. I tried to specify an ansible_user
in the inventory file according to the documentation on Inventory:
[srv1]
192.168.1.146 ansible_connection=ssh ansible_user=user1
However Ansible called with ansible-playbook -i inventory playbook.yml -vvvv
prints the following:
GATHERING FACTS ***************************************************************
<192.168.1.146> ESTABLISH CONNECTION FOR USER: techraf
What worked for me was adding the remote_user
argument to the playbook:
- hosts: srv1
remote_user: user1
Now the same Ansible command connects as user1
:
GATHERING FACTS ***************************************************************
<192.168.1.146> ESTABLISH CONNECTION FOR USER: user1
Also adding remote_user
variable to ansible.cfg
makes Ansible use the intended user instead of the logged-on one.
Are the ansible_user
in inventory file and remote_user
in playbook/ansible.cfg
for different purposes?
What is the ansible_user
used for? Or why doesn't Ansible observe the setting in the inventory?