I couldn’t find which version of OpenID is supported from documents.
1.0, 2.0, or Connect?
Can anyone tell?
@js7-in Dremio uses V 2.0
{
"oAuthConfig": {
"clientId": "<clientId>",
"clientSecret": "<clientSecret>",
"redirectUrl": "https://<dremio.host>:9047/sso",
"authorityUrl": "https://login.microsoftonline.com/<directory.id>/v2.0",
"scope": "openid profile offline_access",
"jwtClaims": {
"userName": "preferred_username"
}
}
}
https://docs.dremio.com/security/sso-config/#configuring-dremio-for-azure-ad
Note that its only supported in the Enterprise Edition.
Ok. Thanks for the answers.