I need to create several users in Azure active directory and allow them to access my Azure SQL DB. What I do is create them here
And then I create them in database
CREATE USER [[email protected]] FROM EXTERNAL PROVIDER;
ALTER ROLE db_datareader ADD MEMBER [[email protected]];
But after I login, it triggers the browser-based authentication and then I get the following error
However, it works awesome with the AD account that set as Active Directory Admin
I am using SSMS and 'Azure Active Directory - Universal with MFA' authentication mechanizm