From 8f1c8980c21ba808e7be5ad5cc6da341e7b41cec Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Tue, 18 Nov 2025 19:14:15 -0600 Subject: [PATCH] authelia: Fix Jenkins OIDC token auth method The latest version of the _OpenId Connect Authentication Plugin_ for Jenkins has several changes. Apparently, one of them is that it defaults to using the `client_secret_basic` token authorization method, instead of `client_secret_post` as it did previously. --- authelia/configuration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authelia/configuration.yml b/authelia/configuration.yml index 056e568..3521ce6 100644 --- a/authelia/configuration.yml +++ b/authelia/configuration.yml @@ -108,7 +108,7 @@ identity_providers: - phone authorization_policy: one_factor pre_configured_consent_duration: 8h - token_endpoint_auth_method: client_secret_post + token_endpoint_auth_method: client_secret_basic - client_id: kubernetes client_name: Kubernetes public: true