From e2490df48e707864976f85424462afa1c316eab8 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 21 Nov 2020 12:24:26 +0100 Subject: [PATCH] nodes/ovh.wireguard: introduce --- nodes/ovh/wireguard.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 nodes/ovh/wireguard.py diff --git a/nodes/ovh/wireguard.py b/nodes/ovh/wireguard.py new file mode 100644 index 0000000..8d75063 --- /dev/null +++ b/nodes/ovh/wireguard.py @@ -0,0 +1,25 @@ +nodes['ovh.wireguard'] = { + 'bundles': set(), + 'groups': { + 'debian-buster', + }, + 'metadata': { + 'interfaces': { + 'eth0': { + 'ips': { + '51.195.47.180', + '2001:41d0:701:1100::20da/64' + }, + 'gateway4': '51.195.44.1', + 'gateway6': '2001:41d0:701:1100::1' + }, + }, + 'backups': { + 'exclude_from_backups': True, + }, + 'vm': { + 'cpu': 1, + 'ram': 2, + }, + }, +}