diff options
Diffstat (limited to 'roles/ssh/templates/generate_dns.j2')
-rw-r--r-- | roles/ssh/templates/generate_dns.j2 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/ssh/templates/generate_dns.j2 b/roles/ssh/templates/generate_dns.j2 new file mode 100644 index 0000000..c8d5a44 --- /dev/null +++ b/roles/ssh/templates/generate_dns.j2 @@ -0,0 +1,13 @@ +{% for host in groups["servers"] %} +{% set host = hostvars[host] %} + +Match originalhost dcontroller exec "systemctl is-active wg-quick@{{ _i.dcontroller }}.service" + HostName {{ host.ip.inbound }} + Port {{ host.services.tcp.ssh }} + +Match originalhost {{ host.ansible_host }} + HostName {{ host.ip.outbound }} + Port {{ host.services.tcp.ssh }} + User root + +{% endfor %} |