forked from saratov/infra
12 lines
338 B
Plaintext
12 lines
338 B
Plaintext
|
{% for node_name, node in stack.nodes.iteritems() %}
|
||
|
Host {{node_name}}.{{stack.domain}} {{node_name}}
|
||
|
HostName {{node.net.eth0.ipv4[0]|ipaddr('address')}}
|
||
|
User root
|
||
|
UserKnownHostsFile /dev/null
|
||
|
StrictHostKeyChecking no
|
||
|
{% if node.net.eth0.ssh_proxy is defined %}
|
||
|
ProxyJump {{node.net.eth0.ssh_proxy}}
|
||
|
{% endif %}
|
||
|
|
||
|
{% endfor %}
|