From 6b106cce38106e7beb9db623a9d98784cb8bbc86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Thu, 30 Dec 2021 15:39:08 +0000 Subject: ansible_port: Add ssh port switch to network roles --- roles/workstation/templates/ssh.config.j2 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'roles/workstation/templates/ssh.config.j2') diff --git a/roles/workstation/templates/ssh.config.j2 b/roles/workstation/templates/ssh.config.j2 index 2915a1a..2a3a903 100644 --- a/roles/workstation/templates/ssh.config.j2 +++ b/roles/workstation/templates/ssh.config.j2 @@ -5,7 +5,13 @@ {% set command = "pgrep wg && ! ping -c 1 -w 1 %s" % h.__ip.external %} Match originalHost {{ h.inventory_hostname }} exec "{{ command }}" HostName {{ h.__ip.internal }} +{% if h.ansible_port is defined %} + Port {{ h.ansible_port }} +{% endif %} Match originalHost {{ h.inventory_hostname }} HostName {{ h.__ip.external }} +{% if h.ansible_port is defined %} + Port {{ h.ansible_port }} +{% endif %} {% endcall %} -- cgit v1.2.3