summaryrefslogtreecommitdiff
path: root/inventory/group_vars/vmhost-ch-oulu/main.yml
blob: db5daa9c8abdc808e5c4aa4a690ceecbfa1af30f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
__vmhost_bridge_interface_zones__:
  bond0:
    - lan
    - svc
    - mgmt

__vmhost_bridge_interface_zones_yaml__: |
  {% for interface in (__vmhost_bridge_interface_zones__.keys() | sort) %}
  {%   for zone in __vmhost_bridge_interface_zones__[interface] %}
  {{ zone }}:
    interfaces:
      - {{ interface }}.{{ network_zones[zone].vlan }}
  {%   endfor %}
  {% endfor %}


vm_host:
  name: ch-oulu
  network:
    bridges: "{{ __vmhost_bridge_interface_zones_yaml__ | from_yaml }}"