2024-03-10 01:03:30 +01:00
|
|
|
/*
|
|
|
|
To add a new member add an attribute to `members`
|
|
|
|
Then add the key to the required groups.
|
2023-05-22 17:24:42 +02:00
|
|
|
*/
|
2024-02-23 10:50:50 +01:00
|
|
|
|
|
|
|
{
|
2023-05-22 15:06:11 +02:00
|
|
|
members = {
|
|
|
|
mdebray = {
|
|
|
|
name = "Maurice Debray";
|
|
|
|
email = "maurice.debray@dgnum.eu";
|
|
|
|
};
|
|
|
|
|
|
|
|
thubrecht = {
|
|
|
|
name = "Tom Hubrecht";
|
|
|
|
email = "tom.hubrecht@dgnum.eu";
|
|
|
|
};
|
2023-05-22 17:18:57 +02:00
|
|
|
|
|
|
|
raito = {
|
2023-07-18 23:03:08 +02:00
|
|
|
name = "Ryan Lahfa";
|
|
|
|
email = "ryan@dgnum.eu";
|
2023-05-22 17:18:57 +02:00
|
|
|
};
|
2023-10-04 14:34:58 +02:00
|
|
|
|
|
|
|
jemagius = {
|
|
|
|
name = "Jean-Marc Gailis";
|
|
|
|
email = "jm@dgnum.eu";
|
|
|
|
};
|
2024-02-20 09:53:37 +01:00
|
|
|
luj = {
|
|
|
|
name = "Julien Malka";
|
|
|
|
email = "luj@dgnum.eu";
|
|
|
|
};
|
2023-05-22 15:06:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
groups = {
|
2023-05-22 17:24:42 +02:00
|
|
|
# members of this group are root on all nodes
|
2024-02-02 10:51:31 +01:00
|
|
|
root = [
|
|
|
|
"thubrecht"
|
|
|
|
"raito"
|
|
|
|
"mdebray"
|
2024-02-20 09:53:37 +01:00
|
|
|
"luj"
|
2024-02-02 10:51:31 +01:00
|
|
|
];
|
2023-06-07 14:13:36 +02:00
|
|
|
|
2023-07-18 23:03:08 +02:00
|
|
|
# members of this group will have root access on the installation isos
|
2024-02-02 10:51:31 +01:00
|
|
|
iso = [
|
|
|
|
"thubrecht"
|
|
|
|
"mdebray"
|
|
|
|
"raito"
|
2024-02-20 09:53:37 +01:00
|
|
|
"luj"
|
2024-02-02 10:51:31 +01:00
|
|
|
];
|
2023-07-18 17:00:31 +02:00
|
|
|
|
2023-12-17 12:03:07 +01:00
|
|
|
# members of this group can access netbox's secret
|
2024-02-02 10:51:31 +01:00
|
|
|
netbox = [ ];
|
2023-12-17 12:03:07 +01:00
|
|
|
|
2023-07-18 22:59:08 +02:00
|
|
|
bureau = [ "gdd" ];
|
2023-05-22 15:06:11 +02:00
|
|
|
};
|
2024-02-02 10:51:31 +01:00
|
|
|
}
|