feat: ldap backend updated to accomodate multiple env files
This commit is contained in:
parent
31d2d2e23d
commit
bfc0d81cf1
4 changed files with 14 additions and 4 deletions
|
@ -48,6 +48,7 @@
|
|||
#backups = [ "/etc/silver_ul_ical/database.db" ];
|
||||
|
||||
age.secrets.ldap_self_service.file = ../../secrets/ldap/self_service.age;
|
||||
age.secrets.ldap_discord.file = ../../secrets/discord/ldap.age;
|
||||
|
||||
skynet_acme.domains = [
|
||||
"${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}"
|
||||
|
@ -71,7 +72,10 @@
|
|||
enable = true;
|
||||
|
||||
# contains teh password in env form
|
||||
envFile = config.age.secrets.ldap_self_service.path;
|
||||
env = {
|
||||
ldap = config.age.secrets.ldap_self_service.path;
|
||||
discord = config.age.secrets.ldap_discord.path;
|
||||
};
|
||||
|
||||
ldap = {
|
||||
host = "ldaps://account.skynet.ie";
|
||||
|
|
|
@ -395,11 +395,11 @@
|
|||
},
|
||||
"locked": {
|
||||
"host": "gitlab.skynet.ie",
|
||||
"lastModified": 1693164823,
|
||||
"narHash": "sha256-1VRjCuUmMVFAsWQzkJ4kzWzaCqDSNQ6f6M2h6eVwRwE=",
|
||||
"lastModified": 1693168330,
|
||||
"narHash": "sha256-GohtWXpbsu3usQOSbrXajvsQsrpwpvhdNVMqyi2ioSg=",
|
||||
"owner": "compsoc1%2Fskynet%2Fldap",
|
||||
"repo": "backend",
|
||||
"rev": "92fad0dc4bd936802d3324bcb43790530b6212db",
|
||||
"rev": "01b5be26606d048210c1a5c2d0a1c127d8cdf2e7",
|
||||
"type": "gitlab"
|
||||
},
|
||||
"original": {
|
||||
|
|
BIN
secrets/discord/ldap.age
Normal file
BIN
secrets/discord/ldap.age
Normal file
Binary file not shown.
|
@ -86,6 +86,10 @@ let
|
|||
restic = [
|
||||
neuromancer
|
||||
];
|
||||
|
||||
discord = [
|
||||
kitt
|
||||
];
|
||||
in
|
||||
{
|
||||
# nix run github:ryantm/agenix -- -e secret1.age
|
||||
|
@ -115,4 +119,6 @@ in
|
|||
"backup/restic.age".publicKeys = users ++ systems;
|
||||
"backup/restic_pw.age".publicKeys = users ++ restic;
|
||||
|
||||
# discord bot and discord
|
||||
"discord/ldap.age".publicKeys = users ++ ldap ++ discord;
|
||||
}
|
Loading…
Reference in a new issue