diff --git a/docs/sources/datasources/mssql/configure/index.md b/docs/sources/datasources/mssql/configure/index.md
index 4d3eb60ee81..7ce6398f1cc 100644
--- a/docs/sources/datasources/mssql/configure/index.md
+++ b/docs/sources/datasources/mssql/configure/index.md
@@ -153,10 +153,6 @@ If you're using an older version of Microsoft SQL Server like 2008 and 2008R2, y
**Authentication:**
-{{< admonition type="note" >}}
-In order to use Azure AD Authentication the toggle `auth.azure_auth_enabled` must be set to `true` in the Grafana configuration file.
-{{< /admonition >}}
-
| Authentication Type | Description | Credentials / Fields |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **SQL Server Authentication** | Default method to connect to MSSQL. Use a SQL Server or Windows login in `DOMAIN\User` format. | - **Username**: SQL Server username - **Password**: SQL Server password |
diff --git a/public/app/plugins/datasource/mssql/configuration/ConfigurationEditor.tsx b/public/app/plugins/datasource/mssql/configuration/ConfigurationEditor.tsx
index 707e1b0bb0d..5a80db52824 100644
--- a/public/app/plugins/datasource/mssql/configuration/ConfigurationEditor.tsx
+++ b/public/app/plugins/datasource/mssql/configuration/ConfigurationEditor.tsx
@@ -49,10 +49,8 @@ export const ConfigurationEditor = (props: DataSourcePluginOptionsEditorProps
- {azureAuthIsSupported && (
-
-
- Azure Authentication Securely authenticate and access Azure resources and applications using
- Azure AD credentials - Managed Service Identity and Client Secret Credentials are supported.
-
-
- )}
+
+
+ Azure Authentication Securely authenticate and access Azure resources and applications using
+ Azure AD credentials - Managed Service Identity and Client Secret Credentials are supported.
+
+
Windows AD: Username + password Windows Active Directory - Sign on for domain user via
@@ -393,7 +383,7 @@ export const ConfigurationEditor = (props: DataSourcePluginOptionsEditorProps
)}
- {azureAuthIsSupported && jsonData.authenticationType === MSSQLAuthenticationType.azureAuth && (
+ {jsonData.authenticationType === MSSQLAuthenticationType.azureAuth && (