Thank you for your extensive input @Akshay-MSFT !
I've gathered the following insights, for others finding their way to this question trying to figure out Which Active Directory tenant type to use for Auth0 social login?
Summary
- Auth0 Social connection -> Azure Active Directory tenant with an app configured to support "Personal Microsoft accounts"
- Auth0 Enterprise connection -> Azure Active Directory tenant with an app configured to support "Accounts in any organisational directory and personal Microsoft accounts" See guide of different app types here
Reflection
Some things I learned (feel free to comment if I've mistaken on any of these)
- Since we wanted to support login with any microsoft account (multi tenant + personal) my initial attempt of using an Auth0 Social connection for this was incorrect, since the Social connection will only allow successful logins with personal accounts regardless of how you have setup the App registration in Azure
- Auth0 Enterprise connection is the way to go for our case, with an Azure app registation supporting multi tenant + personal accounts. Also when setting the connection up in Auth0, make sure to enable the "Use common endpoint" setting as described here
- The Azure Active Directory B2C tenant type is not useful with any of the Auth0 connections as you likely won't be able to get a satisfying consent screen with verified publisher. I'm guessing its just the wrong way of using the B2C tenant, where its supposed to be used the other way around with the Azure tenant being the identity platform optionally integrating applications from Auth0 like in the answer from @Akshay-MSFT