ansible/host_vars/vpn-ovh-ng.auro.re.yml

38 lines
787 B
YAML
Raw Permalink Normal View History

---
wireguard_endpoints:
- name: gs
addr: 192.168.0.1/31
listen_port: 5412
private_key: "{{ vault_wireguard_secrets.ovh_gs.private }}"
peer:
public_key: "{{ vault_wireguard_secrets.gs.public }}"
allowed_addrs:
2021-02-24 22:11:50 +01:00
- 0.0.0.0/0
- ::/0
keepalive: 5
- name: edc
addr: 192.168.0.3/31
listen_port: 5413
private_key: "{{ vault_wireguard_secrets.ovh_edc.private }}"
peer:
public_key: "{{ vault_wireguard_secrets.edc.public }}"
allowed_addrs:
2021-02-24 22:11:50 +01:00
- 0.0.0.0/0
- ::/0
keepalive: 5
2021-02-24 22:11:50 +01:00
bird_router_id: 10.132.0.254
bird_router_prefsrc: 10.132.0.254
bird_ospf_ifaces:
ens19:
stub: true
2021-03-10 03:16:51 +01:00
ens20:
stub: true
2021-02-24 22:11:50 +01:00
gs:
type: pointopoint
cost: 2000
edc:
type: pointopoint
cost: 4000
...