Reputation: 13
Is it possible to connect FoxIDs to Azure AD with OpenID Connect? Having Azure AD as an up-party OP (IdP) on FoxIDs.
Regards Rune (JO Informatik)
Upvotes: 1
Views: 155
Reputation: 4334
Yes, it is possible to connect both a single tenant and multitenant Azure AD App as an up-party on FoxIDs using OpenID Connect.
Please also see the documentation.
Configure single tenant
Start creating an OpenID Connect up-party in FoxIDs
It is now possible to read the Redirect URL
and Post logout redirect URL
.
Create the Azure AD App
Redirect URL
Post logout redirect URL
as Front-channel logout URL
, click save.Go back to the FoxIDs up-party
https://login.microsoftonline.com/{Azure AD tenant ID}/v2.0
That is it, you are done. The new up-party can now be selected as a possible up-party in a down-party.
Configure multitenant
The multitenant configuration differs slightly form the single tenant configuration.
In the Azure AD
In the FoxIDs up-party
https://login.microsoftonline.com/common/v2.0
https://login.microsoftonline.com/{Azure AD tenant ID}/v2.0
, you can possible add multiple issuersRead claims from access token
If you want to read claims from the access token you need to add one more Azure AD App acting as a resource (API). Expose a scope from the resource app and grant the other Azure AD App the resource app scope. Then add the resource app scope as a scope in the FoxIDs up-party.
By during this the access token is issued by the same OP (IdP) and is thereby accepted.
Upvotes: 1