Compare commits
3 commits
a63f682aeb
...
0e7dd1ea70
Author | SHA1 | Date | |
---|---|---|---|
0e7dd1ea70 | |||
01b967fff0 | |||
8d2a46e538 |
3 changed files with 66 additions and 8 deletions
|
@ -3,7 +3,7 @@
|
||||||
let
|
let
|
||||||
dgn-lib = import ../lib { };
|
dgn-lib = import ../lib { };
|
||||||
|
|
||||||
dgn-members = (import ../meta).members.groups.iso;
|
dgn-members = (import ../meta).members.groups.root;
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
|
@ -67,6 +67,39 @@ in
|
||||||
Groups of the DGNum organization.
|
Groups of the DGNum organization.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
external = mkOption {
|
||||||
|
type = attrsOf (listOf str);
|
||||||
|
description = ''
|
||||||
|
External services used by the DGNum organization.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
services = mkOption {
|
||||||
|
type = attrsOf (submodule {
|
||||||
|
options = {
|
||||||
|
admins = mkOption {
|
||||||
|
type = listOf str;
|
||||||
|
default = [ ];
|
||||||
|
description = ''
|
||||||
|
List of administrators of the service.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
adminGroups = mkOption {
|
||||||
|
type = listOf str;
|
||||||
|
default = [ ];
|
||||||
|
description = ''
|
||||||
|
List of administrator groups of the service.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
description = ''
|
||||||
|
Administrator access of the different DGNum services,
|
||||||
|
it is mainly indicative as most services cannot configure this statically.
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes = mkOption {
|
nodes = mkOption {
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
name = "Jean-Marc Gailis";
|
name = "Jean-Marc Gailis";
|
||||||
email = "jm@dgnum.eu";
|
email = "jm@dgnum.eu";
|
||||||
};
|
};
|
||||||
|
|
||||||
luj = {
|
luj = {
|
||||||
name = "Julien Malka";
|
name = "Julien Malka";
|
||||||
email = "luj@dgnum.eu";
|
email = "luj@dgnum.eu";
|
||||||
|
@ -44,17 +45,41 @@
|
||||||
"luj"
|
"luj"
|
||||||
];
|
];
|
||||||
|
|
||||||
# members of this group will have root access on the installation isos
|
# members of this group are root on the fai infrastructure
|
||||||
iso = [
|
fai = [ "catvayor" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
external = {
|
||||||
|
dns = [
|
||||||
"thubrecht"
|
"thubrecht"
|
||||||
"mdebray"
|
|
||||||
"raito"
|
"raito"
|
||||||
"luj"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# members of this group can access netbox's secret
|
email = [ "raito" ];
|
||||||
netbox = [ ];
|
|
||||||
|
|
||||||
bureau = [ "gdd" ];
|
irc = [ "raito" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
# Démarches Normaliennes
|
||||||
|
ds-fr.admins = [
|
||||||
|
"thubrecht"
|
||||||
|
"jemagius"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Cloud DGNum
|
||||||
|
nextcloud.admins = [
|
||||||
|
"thubrecht"
|
||||||
|
"raito"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Netbox DGNum
|
||||||
|
netbox.adminGroups = [
|
||||||
|
"root"
|
||||||
|
"fai"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Videos DGNum
|
||||||
|
peertube.admins = [ "thubrecht" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue