summaryrefslogtreecommitdiff
path: root/inventory/host_vars/ch-testvm-phoebe.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-09-06 01:51:50 +0200
committerChristian Pointner <equinox@spreadspace.org>2022-09-06 01:51:50 +0200
commitcacb62267e536d125afa6954d41202cf0e7f1310 (patch)
tree350df347eae7dccb872f9d00a0bf5055f9e70708 /inventory/host_vars/ch-testvm-phoebe.yml
parentreplace some more ipaddr() filter calls (cont'd) (diff)
replace some more ipaddr() filter calls (cont'd)
Diffstat (limited to 'inventory/host_vars/ch-testvm-phoebe.yml')
-rw-r--r--inventory/host_vars/ch-testvm-phoebe.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/inventory/host_vars/ch-testvm-phoebe.yml b/inventory/host_vars/ch-testvm-phoebe.yml
index e480ae5d..109f820f 100644
--- a/inventory/host_vars/ch-testvm-phoebe.yml
+++ b/inventory/host_vars/ch-testvm-phoebe.yml
@@ -28,12 +28,12 @@ network:
interfaces: "{{ install.interfaces }}"
primary: &_network_primary_
name: svc0
- address: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
+ address: "{{ network_zones.svc.prefix | ansible.utils.ipaddr(network_zones.svc.offsets[inventory_hostname]) }}"
gateway: "{{ network_zones.svc.gateway }}"
static_routes:
- destination: "{{ network_zones.lan.prefix }}"
- gateway: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets['ch-gw-lan']) | ipaddr('address') }}"
+ gateway: "{{ network_zones.svc.prefix | ansible.utils.ipaddr(network_zones.svc.offsets['ch-gw-lan']) | ansible.utils.ipaddr('address') }}"
interfaces:
- *_network_primary_
- name: iot0
- address: "{{ network_zones.iot.prefix | ipaddr(network_zones.iot.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
+ address: "{{ network_zones.iot.prefix | ansible.utils.ipaddr(network_zones.iot.offsets[inventory_hostname]) }}"