fix(librenms): allows kanidm to create accounts
All checks were successful
Build all the nodes / netcore02 (push) Successful in 27s
Build all the nodes / netcore01 (push) Successful in 27s
Build all the nodes / Jaccess01 (push) Successful in 29s
Build all the nodes / Jaccess04 (push) Successful in 29s
Run pre-commit on all files / pre-commit (push) Successful in 32s
Build all the nodes / ap01 (push) Successful in 43s
Build all the nodes / geo02 (push) Successful in 54s
Build all the nodes / bridge01 (push) Successful in 55s
Build all the nodes / hypervisor01 (push) Successful in 1m4s
Build all the nodes / hypervisor03 (push) Successful in 1m5s
Build all the nodes / hypervisor02 (push) Successful in 1m5s
Build all the nodes / lab-router01 (push) Successful in 1m3s
Build all the nodes / geo01 (push) Successful in 1m5s
Build all the nodes / build01 (push) Successful in 1m8s
Build all the nodes / cof02 (push) Successful in 1m7s
Build all the nodes / iso (push) Successful in 1m8s
Build all the nodes / rescue01 (push) Successful in 1m20s
Build the shell / build-shell (push) Successful in 32s
Build all the nodes / tower01 (push) Successful in 1m7s
Build all the nodes / web02 (push) Successful in 1m5s
Build all the nodes / compute01 (push) Successful in 1m36s
Build all the nodes / vault01 (push) Successful in 1m13s
Build all the nodes / storage01 (push) Successful in 1m41s
Build all the nodes / krz01 (push) Successful in 1m48s
Build all the nodes / web03 (push) Successful in 1m7s
Build all the nodes / zulip01 (push) Successful in 55s
Build all the nodes / web01 (push) Successful in 1m22s

This commit is contained in:
catvayor 2025-06-07 23:19:16 +02:00
parent f685e7e4ec
commit e4697fc809
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -24,12 +24,16 @@ in
hostname = host;
settings = {
auth.socialite.configs.kanidm = {
listener = "\\SocialiteProviders\\Kanidm\\KanidmExtendSocialite";
client_id = "$KANIDM_CLIENT_ID";
client_secret = "$KANIDM_CLIENT_SECRET";
redirect = "$KANIDM_REDIRECT_URI";
base_url = "$KANIDM_BASE_URL";
auth.socialite = {
configs.kanidm = {
listener = "\\SocialiteProviders\\Kanidm\\KanidmExtendSocialite";
client_id = "$KANIDM_CLIENT_ID";
client_secret = "$KANIDM_CLIENT_SECRET";
redirect = "$KANIDM_REDIRECT_URI";
base_url = "$KANIDM_BASE_URL";
};
default_role = "normal";
register = true;
};
};