Skip to content

Commit c8b75fd

Browse files
authored
Update quickstart-botframework-integration.md to use managed identity
1 parent 9e139ca commit c8b75fd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/communication-services/quickstarts/chat/quickstart-botframework-integration.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ To use Azure Communication Services chat as a channel in Azure Bot Service, firs
4242

4343
### Create an Azure Bot Service resource
4444

45-
First, [create an Azure Bot Service resource in the Azure portal](/azure/bot-service/abs-quickstart?tabs=userassigned). Communication Services Chat channel supports single-tenant bots, managed identity bots, and multitenant bots. This example uses a *multitenant* bot.
45+
First, [create an Azure Bot Service resource in the Azure portal](/azure/bot-service/abs-quickstart?tabs=userassigned). Communication Services Chat channel supports managed identity bots and single-tenant bots. This example uses a *managed identity* bot, [add the managed identity to your app service](/azure/bot-service/abs-quickstart?view=azure-bot-service-4.0&tabs=userassigned#to-update-your-app-service)
4646

47-
To set up a single-tenant or managed identity bot, review [Bot identity information](/azure/bot-service/bot-builder-authentication?tabs=userassigned%2Caadv2%2Ccsharp#bot-identity-information).
47+
To set up a single-tenant bot, review [Bot identity information](/azure/bot-service/bot-builder-authentication?tabs=userassigned%2Caadv2%2Ccsharp#bot-identity-information).
4848

4949
For a managed identity bot, you might have to [update the bot service identity](/azure/bot-service/bot-builder-authentication?tabs=userassigned%2Caadv2%2Ccsharp#to-update-your-app-service).
5050

@@ -105,8 +105,10 @@ The final step to create a bot is to deploy the web app. For this quickstart, us
105105

106106
```json
107107
{
108-
"MicrosoftAppId": "<App-registration-ID>",
109-
"MicrosoftAppPassword": "<App-password>"
108+
"MicrosoftAppType": "UserAssignedMSI"
109+
"MicrosoftAppId": "<Client ID of the user-assigned managed identity>",
110+
"MicrosoftAppPassword": "", // Not applicable. Leave this blank for a user-assigned managed identity bot.
111+
"MicrosoftAppTenantId": "The tenant ID of the user-assigned managed identity"
110112
}
111113
```
112114

0 commit comments

Comments
 (0)