Skip to content

Commit c9ec932

Browse files
authored
(AzureCXP) fixes MicrosoftDocs/azure-docs#367397
Updated line no: 258 from "Create User [Id] From External Provider" to "Create User [Id] From External Provider With OBJECT_ID='xxx'"
1 parent fbb5d26 commit c9ec932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/app-service/tutorial-connect-msi-sql-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Here's an example of the output:
255255
1. In the SQL prompt for the database you want, run the following commands to grant the minimum permissions your app needs. For example,
256256
257257
```sql
258-
CREATE USER [<identity-name>] FROM EXTERNAL PROVIDER;
258+
CREATE USER [<identity-name>] FROM EXTERNAL PROVIDER With OBJECT_ID='xxx';
259259
ALTER ROLE db_datareader ADD MEMBER [<identity-name>];
260260
ALTER ROLE db_datawriter ADD MEMBER [<identity-name>];
261261
ALTER ROLE db_ddladmin ADD MEMBER [<identity-name>];

0 commit comments

Comments
 (0)