From 245559ee0928566e848a9784d42ada193c615cab Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sun, 19 Jul 2020 12:09:34 +0200 Subject: [PATCH] groups/locations: update --- groups/locations.py | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/groups/locations.py b/groups/locations.py index 54fde75..8b2bdef 100644 --- a/groups/locations.py +++ b/groups/locations.py @@ -1,14 +1,20 @@ -groups['ovh'] = { - 'member_patterns': ( - r"ovh\..*", - ), - 'metadata': { - 'users': { - # Make sure to get rid of the default OVH user - 'debian': { - 'delete': True, - }, - }, +groups['htz'] = { + 'member_patterns': { + r"htz\..*", + }, + 'subgroups': { + 'htz-cloud', }, } +groups['htz-cloud'] = { + 'member_patterns': { + r"htz\-cloud\..*", + }, +} + +groups['gce'] = { + 'member_patterns': { + r"gce\..*", + }, +}