2022-11-04 22:53:56 +01:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
Host ssh.n39.eu
|
|
|
|
Hostname ssh.n39.eu
|
|
|
|
IdentityFile {{ setup_ssh_key }}
|
|
|
|
IdentitiesOnly yes
|
|
|
|
User {{ setup_ssh_logname }}
|
|
|
|
Port 22
|
|
|
|
|
2023-01-09 21:09:43 +01:00
|
|
|
{% for host in groups['location_space'] %}
|
2022-11-04 22:53:56 +01:00
|
|
|
Host {{ host }}
|
|
|
|
Hostname {{ host }}
|
|
|
|
IdentityFile {{ setup_ssh_key }}
|
|
|
|
IdentitiesOnly yes
|
|
|
|
User {{ setup_ssh_logname }}
|
|
|
|
ProxyJump ssh.n39.eu
|
|
|
|
Port 22
|
|
|
|
|
|
|
|
{% endfor %}
|
2023-01-09 21:09:43 +01:00
|
|
|
{% for host in groups['location_internet'] %}
|
2022-11-04 22:53:56 +01:00
|
|
|
Host {{ host }}
|
|
|
|
Hostname {{ host }}
|
|
|
|
IdentityFile {{ setup_ssh_key }}
|
|
|
|
IdentitiesOnly yes
|
|
|
|
User {{ setup_ssh_logname }}
|
|
|
|
Port 22
|
|
|
|
|
2023-01-09 21:09:43 +01:00
|
|
|
{% endfor %}
|