From c2f2dc1e7232571fd00d05db4850934efe472d48 Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Fri, 4 Apr 2025 17:56:24 -0700 Subject: [PATCH] docs: improve mssql statement order --- docs/integrations/app-connections/mssql.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/integrations/app-connections/mssql.mdx b/docs/integrations/app-connections/mssql.mdx index ca91a17db..45082103b 100644 --- a/docs/integrations/app-connections/mssql.mdx +++ b/docs/integrations/app-connections/mssql.mdx @@ -17,14 +17,14 @@ Infisical supports connecting to Microsoft SQL Server using database principals. -- Grant server-level connect permission GRANT CONNECT SQL TO [infisical_app]; + -- If you intend to use Platform Managed Credentials (see below) + GRANT ALTER ANY LOGIN TO [infisical_app]; + -- Switch to the specific database where you want to create the user USE my_database; -- Create the database user mapped to the login CREATE USER [infisical_app] FOR LOGIN [infisical_app]; - - -- If you intend to use Platform Managed Credentials (see below) - GRANT ALTER ANY LOGIN TO [infisical_app]; ```