8b3481f511
* Add molecule tests for bastion-ssh-config * Add molecule tests for adduser * Update .gitignore
18 lines
709 B
Django/Jinja
18 lines
709 B
Django/Jinja
{% set vars={'hosts': ''} %}
|
|
{% set user='' %}
|
|
|
|
{% for h in groups['all'] %}
|
|
{% if h not in groups['bastion'] %}
|
|
{% if vars.update({'hosts': vars['hosts'] + ' ' + (hostvars[h].get('ansible_ssh_host') or hostvars[h]['ansible_host'])}) %}{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
Host {{ bastion_ip }}
|
|
Hostname {{ bastion_ip }}
|
|
StrictHostKeyChecking no
|
|
ControlMaster auto
|
|
ControlPath ~/.ssh/ansible-%r@%h:%p
|
|
ControlPersist 5m
|
|
|
|
Host {{ vars['hosts'] }}
|
|
ProxyCommand ssh -F /dev/null -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -W %h:%p -p {{ bastion_port }} {{ real_user }}@{{ bastion_ip }} {% if ansible_ssh_private_key_file is defined %}-i {{ ansible_ssh_private_key_file }}{% endif %}
|