79308108

Date: 2024-12-25 18:00:10
Score: 0.5
Natty:
Report link

fixed by below:

// Connect the bot service to Microsoft Teams
resource botServiceMsTeamsChannel 'Microsoft.BotService/botServices/channels@2022-09-15' = {
  parent: botService
  location: 'global'
  name: 'MsTeamsChannel'
  properties: {
    channelName: 'MsTeamsChannel'
    properties: {
      acceptedTerms: true
      callingWebhook: 'https://${botAppDomain}/api/callback'
      deploymentEnvironment: 'CommercialDeployment'
      enableCalling: true
//      incomingCallRoute: 'https://${botAppDomain}/api/callback'
      isEnabled: true
    }
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: hoodv