Merge pull request #1883 from procchio6/fix/oauth

Fix azure oauth not recognizing tenant ID
This commit is contained in:
Andras Bacsai
2024-03-25 13:45:45 +01:00
committed by GitHub
2 changed files with 21 additions and 2 deletions

View File

@@ -30,4 +30,12 @@ return [
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'azure' => [
'client_id' => env('AZURE_CLIENT_ID'),
'client_secret' => env('AZURE_CLIENT_SECRET'),
'redirect' => env('AZURE_REDIRECT_URI'),
'tenant' => env('AZURE_TENANT_ID'),
'proxy' => env('AZURE_PROXY'),
],
];