diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2021-01-12 23:06:32 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2021-01-12 23:06:32 +0100 |
commit | e2f4aefa956bb06b1ee52d95ad8275757605678d (patch) | |
tree | ed4810a3ced1b49adf09d171cefc37eb7b5c3e51 /j2/wireguard | |
parent | 0e8048146ddf85adf28c1da09e45b98760f23210 (diff) | |
download | rules-sandbox-e2f4aefa956bb06b1ee52d95ad8275757605678d.tar.gz rules-sandbox-e2f4aefa956bb06b1ee52d95ad8275757605678d.tar.bz2 rules-sandbox-e2f4aefa956bb06b1ee52d95ad8275757605678d.tar.xz rules-sandbox-e2f4aefa956bb06b1ee52d95ad8275757605678d.zip |
Switching WG code to use object references.
Diffstat (limited to 'j2/wireguard')
-rw-r--r-- | j2/wireguard/ansible-host.j2 | 4 | ||||
-rw-r--r-- | j2/wireguard/inventory.j2 | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/j2/wireguard/ansible-host.j2 b/j2/wireguard/ansible-host.j2 index 9d684ef..a3c8c40 100644 --- a/j2/wireguard/ansible-host.j2 +++ b/j2/wireguard/ansible-host.j2 @@ -2,7 +2,7 @@ link_address: {{ host.ip }} network_cidr: {{ host.networkCidr }} wireguard_peers: - {{ host.name }}: + {{ host.machine.name }}: {%- for peer in peers %} - - {{ peer }} + - {{ peer.fqdn }} {%- endfor %} diff --git a/j2/wireguard/inventory.j2 b/j2/wireguard/inventory.j2 index c7f38ee..0924bb2 100644 --- a/j2/wireguard/inventory.j2 +++ b/j2/wireguard/inventory.j2 @@ -1,5 +1,7 @@ # Generated all: -{%- for host in hosts %} - {{ host.name }}: {{ host.fqdn }} -{%- endfor %} + hosts: + {%- for host in hosts %} + {{ host.getName() }}: + ansible_host: {{ host.getFqdn() }} + {%- endfor %} |