Skip to content

Commit 7405692

Browse files
authored
Fix identity type in command
This PR fixes a small inconsistency in the commands. Before the change, both commands the, the user as well as the system-assigned identity are referring to system identity. That was confusing to me while following the tutorial.
1 parent 20bf9d1 commit 7405692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Next, you configure your App Service app to connect to SQL Database with a manag
237237
238238
```sql
239239
SET aad_validate_oids_in_tenant = off;
240-
CREATE ROLE <postgresql-user-name> WITH LOGIN PASSWORD '<application-id-of-system-assigned-identity>' IN ROLE azure_ad_user;
240+
CREATE ROLE <postgresql-user-name> WITH LOGIN PASSWORD '<application-id-of-user-assigned-identity>' IN ROLE azure_ad_user;
241241
```
242242
243243
Whatever name you choose for *\<postgresql-user-name>*, it's the PostgreSQL user you'll use to connect to the database later from your code in App Service.

0 commit comments

Comments
 (0)