From 16a5c37cbd99558e4ec43a09ca0e4194f7b567c9 Mon Sep 17 00:00:00 2001 From: Dewi Roberts Date: Mon, 30 Jun 2025 20:53:49 +0100 Subject: [PATCH] Change OIDC url to `none` Signed-off-by: Dewi Roberts --- authentik/sources/oauth/types/azure_ad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/sources/oauth/types/azure_ad.py b/authentik/sources/oauth/types/azure_ad.py index 7d76e4647d..741971492c 100644 --- a/authentik/sources/oauth/types/azure_ad.py +++ b/authentik/sources/oauth/types/azure_ad.py @@ -73,7 +73,7 @@ class AzureADType(SourceType): authorization_url = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize" access_token_url = "https://login.microsoftonline.com/common/oauth2/v2.0/token" # nosec profile_url = "https://graph.microsoft.com/v1.0/me" - oidc_well_known_url = " " + oidc_well_known_url = None oidc_jwks_url = "https://login.microsoftonline.com/common/discovery/keys" authorization_code_auth_method = AuthorizationCodeAuthMethod.POST_BODY