openstack_ssh_config.j2 626 B

123456789101112131415161718192021
  1. Host *
  2. IdentitiesOnly yes
  3. Host bastion
  4. Hostname {{ hostvars['bastion'].ansible_host }}
  5. IdentityFile {{ hostvars['bastion'].ansible_private_key_file }}
  6. User {{ ssh_user }}
  7. StrictHostKeyChecking no
  8. UserKnownHostsFile=/dev/null
  9. {% for host in groups['all'] | difference(groups['bastions'][0]) %}
  10. Host {{ host }}
  11. Hostname {{ hostvars[host].ansible_host }}
  12. ProxyCommand {{ ssh_proxy_command }} -W {{ hostvars[host].private_v4 }}:22
  13. IdentityFile {{ hostvars[host].ansible_private_key_file }}
  14. User {{ ssh_user }}
  15. StrictHostKeyChecking no
  16. UserKnownHostsFile=/dev/null
  17. {% endfor %}