Joshua M. Boniface
777a4693a1
Ensure hostbased auth works with configs, remove erroneous old conditional for authtypes, remove obsolete config option.
9 lines
202 B
Django/Jinja
9 lines
202 B
Django/Jinja
# SSH remote allowed hosts
|
|
# {{ ansible_managed }}
|
|
|
|
{% for host in groups[cluster_group] %}
|
|
{{ host }}
|
|
{{ host.split('.')[0] }}.{{ networks['cluster']['domain'] }}
|
|
{{ host.split('.')[0] }}
|
|
{% endfor %}
|