Azure AD – Password less with FIDO2 now in preview for hybrid deployments
As you may be already aware, support for password less with FIDO2 keys has been in preview for quite some time already for Azure AD Joined devices...
For those who have been working with Active Directory Federation Services (AD FS), you already know you could configure an Alternate Login ID to sign in with your AD FS environment.
An Alternate Login ID allows you to use your email address instead of your UPN (User Principal Name) to sign in.
As a best practice/recommendation, UPN and email address should be identical but there is situations where this can not be the case, such as:
Well, until now this was not possible to define an Alternate Login ID to sign in with Azure Active Directory (Azure AD).
This option is now available in preview.
If you want to use this new authentication capability, you will need to use Azure AD Preview PowerShell module, synchronize your directory with Azure AD with either Password Hash Sync (PHS) or Pass-Through Authentication (PTA).
Install-Module AzureADPreview
NOTE if you already have a version of Azure AD PowerShell module installed, you will have to uninstall it
Connect-AzureAD
Get-AzureADPolicy
Get-AzureADPolicy | where-object {$_.Type -eq “HomeRealmDiscoveryPolicy”} | fl *
Set-AzureADPolicy -id <the policy ID> -Definition @(‘{“HomeRealmDiscoveryPolicy” :”AllowCloudPasswordValidation”:true,”AlternateIdLogin”:{“Enabled”: true}}}’) -DisplayName “BasicAutoAccelerationPolicy” -IsOrganizationDefault $true -Type “HomeRealmDiscoveryPolicy”
New-AzureADPolicy -Definition @(‘{“HomeRealmDiscoveryPolicy” :{“AlternateIdLogin”:{“Enabled”: true}}}’) -DisplayName “BasicAutoAccelerationPolicy” -IsOrganizationDefault $true -Type “HomeRealmDiscoveryPolicy”
Now you are ready to use the Alternate Login ID capability.
Now your users can use their email address (any of the address in the Proxy Address attribute of their account) to logon to your Azure AD/Office 365 (or any application using Azure AD authentication).
As you may be already aware, support for password less with FIDO2 keys has been in preview for quite some time already for Azure AD Joined devices...
By now, you may already know the Azure Active Directory App Proxy (AAD App Proxy), the solution integrated with Azure AD to publish internal...
By now, you should already know that Azure Active Directory Connect (AAD Connect) is the directory synchronization tool used to synchronize your...