{{tag>Ansible SSH CA}} # Ansible ssh password auth Voir: * https://developers.redhat.com/cheat-sheets/ssh-remote-machines-using-ansible ~~~yaml --- ansible_user : ansible_ssh_pass : ansible_become_pass: ~~~ `hosts` ~~~ini [plop] 192.168.134.227 ansible_ssh_user=jean ansible_ssh_pass='P@ssw0rd' ansible_become_pass='P@ssw0rd' ~~~ ~~~bash ansible -i hosts -m ping plop ~~~