2019-06-09 00:11:06 -04:00
|
|
|
# SSH remote allowed hosts
|
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
2020-08-06 15:54:12 -04:00
|
|
|
{% for host in groups[cluster_group] %}
|
|
|
|
{{ host }}
|
|
|
|
{{ host.split('.')[0] }}.{{ networks['cluster']['domain'] }}
|
|
|
|
{{ host.split('.')[0] }}
|
|
|
|
{% endfor %}
|