Merge pull request #2569 from avoidik/allow-ssh-key-openstack

Allow ansible_ssh_private_key_file for Openstack
This commit is contained in:
Andreas Krüger 2018-03-31 18:05:00 +02:00 committed by GitHub
commit c1a2e9a8c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1 +1 @@
ansible_ssh_common_args: '-o ProxyCommand="ssh -o StrictHostKeyChecking=no -W %h:%p -q USER@BASTION_ADDRESS"'
ansible_ssh_common_args: "-o ProxyCommand='ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -W %h:%p -q USER@BASTION_ADDRESS {% if ansible_ssh_private_key_file is defined %}-i {{ ansible_ssh_private_key_file }}{% endif %}'"