Return authelia service to lebesgue.

This commit is contained in:
Lorenzo Good 2025-12-31 00:28:39 -06:00
parent 60424d6ff2
commit b0657027e6
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0
3 changed files with 32 additions and 0 deletions

View file

@ -3,6 +3,10 @@
defaultSopsFile = ../secrets/main.yaml;
secrets = let
autheliaSecret = {
owner = "authelia-main";
sopsFile = ../secrets/authelia/secrets.yaml;
};
in {
admin-password.neededForUsers = true;
@ -13,6 +17,16 @@
restic-env = {owner = "restic";};
restic-password = {owner = "restic";};
restic-repository = {owner = "restic";};
authelia-jwtsecret = autheliaSecret;
authelia-oidc-privkey = autheliaSecret;
authelia-oidc-hmac = autheliaSecret;
authelia-session-secret = autheliaSecret;
authelia-storage-encryption = autheliaSecret;
authelia-users = {
owner = "authelia-main";
sopsFile = ../secrets/authelia/users.yaml;
};
};
};
}