infrastructure/meta/members.nix
Julien Malka 551cb259ad
All checks were successful
build configuration / build_web02 (pull_request) Successful in 59s
build configuration / build_vault01 (pull_request) Successful in 1m0s
build configuration / build_storage01 (pull_request) Successful in 1m2s
build configuration / build_compute01 (pull_request) Successful in 1m6s
build configuration / build_web01 (pull_request) Successful in 1m24s
lint / check (push) Successful in 29s
build configuration / build_vault01 (push) Successful in 59s
build configuration / build_web02 (push) Successful in 59s
build configuration / build_storage01 (push) Successful in 1m2s
build configuration / build_compute01 (push) Successful in 1m5s
build configuration / build_web01 (push) Successful in 1m23s
chore(infra): add luj as root
2024-02-20 09:58:36 +01:00

56 lines
993 B
Nix

/* To add a new member add an attribute to `members`
Then add the key to the required groups.
*/
let
members = {
mdebray = {
name = "Maurice Debray";
email = "maurice.debray@dgnum.eu";
};
thubrecht = {
name = "Tom Hubrecht";
email = "tom.hubrecht@dgnum.eu";
};
raito = {
name = "Ryan Lahfa";
email = "ryan@dgnum.eu";
};
jemagius = {
name = "Jean-Marc Gailis";
email = "jm@dgnum.eu";
};
luj = {
name = "Julien Malka";
email = "luj@dgnum.eu";
};
};
groups = {
# members of this group are root on all nodes
root = [
"thubrecht"
"raito"
"mdebray"
"luj"
];
# members of this group will have root access on the installation isos
iso = [
"thubrecht"
"mdebray"
"raito"
"luj"
];
# members of this group can access netbox's secret
netbox = [ ];
bureau = [ "gdd" ];
};
in
{
inherit groups members;
}