Can I disable sign-up in Azure AD B2C? In other words, I don't want customers to sign up accounts by themselves, I want it to be done only by admin in Azure. Thanks.
Azure AD is Microsoft's solution for managing employee access to SaaS apps and it has features designed for this purpose such as licensing and Conditional Access. Azure AD B2C provides an identity and access management platform for building web and mobile applications.
Azure Active Directory B2C has a free tier for your first 50,000 active users per month (MAU), which you can use for testing purposes.
Azure Active Directory B2C (Azure AD B2C) is an identity management service that enables custom control of how your customers sign up, sign in, and manage their profiles when using your iOS, Android, . NET, single-page (SPA), and other applications.
Built-in Policies
Yes, only define a Sign-in policy.
Do not define a Sign-up or Sign-in policy nor a Sign-up policy.
Custom Policies
The problem with a sign-in only policy is you only have basic UI customization options. You do not get the full set of features as described here.
With custom policies, you can define a Sign-Up/Sign-In policy and then disable the Sign-Up portion. This allows for the same level if UI customization as described here.
<Item Key="SignUpTarget">SignUpWithLogonUsernameExchange</Item>
from your TechnicalProfile<TechnicalProfile Id="SelfAsserted-LocalAccountSignin-Username-NoSignUp">
<DisplayName>Local Account Signin</DisplayName>
<Protocol Name="Proprietary" Handler="Web.TPEngine.Providers.SelfAssertedAttributeProvider, Web.TPEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
<Metadata>
<!-- Want to disable sign-up on unified policy -->
<!-- <Item Key="SignUpTarget">SignUpWithLogonUsernameExchange</Item> -->
<Item Key="setting.operatingMode">Username</Item>
<Item Key="ContentDefinitionReferenceId">api.selfasserted-ext-local</Item>
<Item Key="language.button_continue">Login</Item>
</Metadata>
...
</TechnicalProfile>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With