authelia: add info on secrets length

This commit is contained in:
ibizaman 2026-03-14 22:53:51 +01:00
parent 6c6f3d6344
commit 816f561b9b

View file

@ -114,7 +114,7 @@ in
};
};
storageEncryptionKey = lib.mkOption {
description = "Storage encryption key.";
description = "Storage encryption key. Must be >= 20 characters.";
type = lib.types.submodule {
options = shb.contracts.secret.mkRequester {
mode = "0400";
@ -124,7 +124,7 @@ in
};
};
identityProvidersOIDCHMACSecret = lib.mkOption {
description = "Identity provider OIDC HMAC secret.";
description = "Identity provider OIDC HMAC secret. Must be >= 40 characters.";
type = lib.types.submodule {
options = shb.contracts.secret.mkRequester {
mode = "0400";