Azure for authentication to multiple applications using the organization's identity provider

179 views Asked by At

I want to use Azure for authentication to multiple web applications using the organisation's identity provider.

Organisation has already developed identity provider, but I want to use Azure to authenticate all applications through Organisation's identity provider.

I can see Azure AD B2C option, but I don't want to use any social identities or local Azure identities.

Scenario want to work as below.

User enter https://webapp1.com/home

it should redirect to Organisation IDP

Once it's Authenticated by Organisation's IDP ( with username/password pop up for sign in), it should redirect to https://webapp1.com/home page

If I use Azure B2C , local sign in text boxes will be there as unused. Is there any better options available in Azure to resolve this issue?

I tried Azure AD B2C, but it left with unused username/pass text boxes. I just want to use single identity provider from Organization.

1

There are 1 answers

1
Derek Gusoff On

If your identity provider is Oauth compliant, you can register it as an identity provider in B2C by clicking the New OpenID Connect Provider button on the Identity Providers blade, and then consuming that in your signup/signin flow.

Oath requires a redirect, so if you have a local sign in form, it will not be used. The Identity Provider provides the login screen.

enter image description here