Link to Draw.IO
az login
az account set --subscription {SubscriptionID|SubscriptionName}
az bicep build --file bot-project/main.bicep
az deployment sub create `
--location westeurope `
--template-file bot-project/main.bicep `
--parameters `
location='westeurope' `
environment='dev' `
projectName='{projectName}' `
adminUserId="['{UserId}']" `
devopsUserId="['{UserId}']" `
botName='{BotName}' `
applicationId='{AppId}' `
applicationSecret='{AppSecret}' `
buildId='Manually Deployed'
az deployment group create `
--resource-group {rg-myresourcegroup} `
--template-file bot-project/bot-template.bicep `
--parameters `
location='westeurope' `
environment='dev' `
projectName='{projectName}' `
adminUserId="['{UserId}']" `
devopsUserId="['{UserId}']" `
botName='{BotName}' `
applicationId='{AppId}' `
applicationSecret='{AppSecret}' `
buildId='Manually Deployed'