Skip to content

Commit 53dab54

Browse files
Update live agent handoff (#71)
Updating to master
1 parent 10adfb3 commit 53dab54

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

azuredeploy.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@
5757
"metadata":{
5858
"description": "Healthbot webchat secret."
5959
}
60+
},
61+
"repoUrl": {
62+
"type": "string"
63+
},
64+
"branch": {
65+
"type": "string"
6066
}
6167
},
6268
"variables":{
@@ -66,8 +72,6 @@
6672
"linuxFxVersion": "NODE|lts",
6773
"hostingPlanNameLinux": "[concat('plan-linux-', parameters('siteName'))]",
6874
"hostingPlanNameWin": "[concat('plan-win-', parameters('siteName'))]",
69-
"repoURL": "https://github.com/microsoft/HealthBotContainerSample.git",
70-
"branch": "live_agent_handoff",
7175
"kind": "[if(equals(parameters('operatingSystem'), 'windows'), 'app', 'linux')]",
7276
"linuxSiteName": "[if(equals(parameters('operatingSystem'), 'linux'), parameters('siteName'), 'app-na')]",
7377
"windowsSiteName": "[if(equals(parameters('operatingSystem'), 'windows'), parameters('siteName'), 'app-na')]",
@@ -119,8 +123,8 @@
119123
"[resourceId('Microsoft.Web/sites', variables('linuxSiteName'))]"
120124
],
121125
"properties": {
122-
"repoUrl": "[variables('repoURL')]",
123-
"branch": "[variables('branch')]",
126+
"repoUrl": "[parameters('repoURL')]",
127+
"branch": "[parameters('branch')]",
124128
"isManualIntegration": true
125129
}
126130
}
@@ -193,8 +197,8 @@
193197
"[resourceId('Microsoft.Web/sites', variables('windowsSiteName'))]"
194198
],
195199
"properties": {
196-
"repoUrl": "[variables('repoURL')]",
197-
"branch": "[variables('branch')]",
200+
"repoUrl": "[parameters('repoURL')]",
201+
"branch": "[parameters('branch')]",
198202
"isManualIntegration": true
199203
}
200204
}

0 commit comments

Comments
 (0)