blob: 25214b3b0c2227a2034fabc3770d079721e9054f (
plain)
1
2
3
4
5
6
7
8
9
10
|
{# Query parameters: ?username=arne #}
{% set ssh_username = options['username']|default('ARNE') %}
{% for (switch, s) in objects["public/switches"].switches|dictsort %}
{% set mg = objects["read/switches-management"].switches[switch] -%}
Host {{ switch }}.tg23.gathering.org {{ switch }}
User {{ ssh_username }}
ProxyJump my-proxyjump
{% endfor %}
|