summaryrefslogtreecommitdiff
path: root/internal/configuration/schema/keys.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2025-02-24 18:49:15 +1100
committerGitHub <noreply@github.com>2025-02-24 18:49:15 +1100
commit05fa254f27e6a1eee89abe8c5512d27de77cd7e7 (patch)
tree8f56e80b855f611000fe142303026f0ed71ef7ed /internal/configuration/schema/keys.go
parent194dd221ab7a5f2c9667b967532152df4914226a (diff)
feat(handlers): basic authz caching (#8320)
This adds the ability to cache successful basic authz attempts. This is done via a memory store that uses the HMAC-SHA256 algorithm to perform irreversible comparison of input parameters and has a maximum lifetime. Closes #5006 Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/configuration/schema/keys.go')
-rw-r--r--internal/configuration/schema/keys.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/configuration/schema/keys.go b/internal/configuration/schema/keys.go
index 3bc9084b4..5c38f093c 100644
--- a/internal/configuration/schema/keys.go
+++ b/internal/configuration/schema/keys.go
@@ -327,6 +327,7 @@ var Keys = []string{
"server.endpoints.authz.*",
"server.endpoints.authz.*.authn_strategies",
"server.endpoints.authz.*.authn_strategies[].name",
+ "server.endpoints.authz.*.authn_strategies[].scheme_basic_cache_lifespan",
"server.endpoints.authz.*.authn_strategies[].schemes",
"server.endpoints.authz.*.implementation",
"server.endpoints.enable_expvars",