From 7c53a13483291ced45b3085691712bcd1f3dd2c5 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 6 Jun 2020 10:20:58 +0200 Subject: [PATCH] gce.bind01 / hostus.ovz-512: add --- groups/locations.py | 14 ++++++++++++++ nodes/gce/bind01.py | 9 +++++++++ nodes/hostus/ovz-512.py | 12 ++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 groups/locations.py create mode 100644 nodes/gce/bind01.py create mode 100644 nodes/hostus/ovz-512.py diff --git a/groups/locations.py b/groups/locations.py new file mode 100644 index 0000000..54fde75 --- /dev/null +++ b/groups/locations.py @@ -0,0 +1,14 @@ +groups['ovh'] = { + 'member_patterns': ( + r"ovh\..*", + ), + 'metadata': { + 'users': { + # Make sure to get rid of the default OVH user + 'debian': { + 'delete': True, + }, + }, + }, +} + diff --git a/nodes/gce/bind01.py b/nodes/gce/bind01.py new file mode 100644 index 0000000..607f5e3 --- /dev/null +++ b/nodes/gce/bind01.py @@ -0,0 +1,9 @@ +nodes['gce.bind01'] = { + 'groups': { + 'dns', + }, + 'metadata': { + 'os': 'debian', + 'os_release': 'buster', + }, +} diff --git a/nodes/hostus/ovz-512.py b/nodes/hostus/ovz-512.py new file mode 100644 index 0000000..3242624 --- /dev/null +++ b/nodes/hostus/ovz-512.py @@ -0,0 +1,12 @@ +# ns-1.kunbox.net +# Amsterdam, Netherlands + +nodes['hostus.ovz-512'] = { + 'groups': { + 'dns', + }, + 'metadata': { + 'os': 'debian', + 'os_release': 'buster', + }, +}