Skip to content

Commit d927da4

Browse files
authored
Merge pull request #93467 from Freshchris01/patch-1
Fix identity type in command placeholder
2 parents bc21bd5 + 7405692 commit d927da4

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)