This guide provides step-by-step instructions for configuring Windows Authentication for an Azure SQL Managed Instance. It outlines the prerequisites and the process to enable secure and seamless authentication using Windows credentials.
Prerequisites:
Authentication set up:


This should automatically add this user to the SQL Managed Instance Logins list.![]()
Once this is done, the user should be able to log in to the Managed Instance via SQL Server Management Studio (SSMS) using the Microsoft Entra Password authentication option.![]()
CREATE LOGIN [TestUser@yourdomain.com] FROM EXTERNAL PROVIDER; |
For further information, please refer to this Microsoft article.
|