You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
486 B
11 lines
486 B
---
|
|
# On some distro, /usr/bin/python does not exists... Here is the workaround
|
|
# to make it work everywhere
|
|
ansible_python_interpreter: /usr/bin/python2
|
|
|
|
# The SSH Private Key that Ansible will use to connect to target hosts
|
|
# Also, the matching public key will be used by the "bootstrap" role.
|
|
ansible_ssh_private_key_file: "{{ lookup('env','HOME') }}/.ssh/id_rsa"
|
|
|
|
# Use the good old SSH command instead of paramiko that fails on unknown keys
|
|
ansible_connection: ssh
|
|
|