|
57 | 57 | "metadata":{ |
58 | 58 | "description": "Healthbot webchat secret." |
59 | 59 | } |
| 60 | + }, |
| 61 | + "repoUrl": { |
| 62 | + "type": "string" |
| 63 | + }, |
| 64 | + "branch": { |
| 65 | + "type": "string" |
60 | 66 | } |
61 | 67 | }, |
62 | 68 | "variables":{ |
|
66 | 72 | "linuxFxVersion": "NODE|lts", |
67 | 73 | "hostingPlanNameLinux": "[concat('plan-linux-', parameters('siteName'))]", |
68 | 74 | "hostingPlanNameWin": "[concat('plan-win-', parameters('siteName'))]", |
69 | | - "repoURL": "https://github.com/microsoft/HealthBotContainerSample.git", |
70 | | - "branch": "live_agent_handoff", |
71 | 75 | "kind": "[if(equals(parameters('operatingSystem'), 'windows'), 'app', 'linux')]", |
72 | 76 | "linuxSiteName": "[if(equals(parameters('operatingSystem'), 'linux'), parameters('siteName'), 'app-na')]", |
73 | 77 | "windowsSiteName": "[if(equals(parameters('operatingSystem'), 'windows'), parameters('siteName'), 'app-na')]", |
|
119 | 123 | "[resourceId('Microsoft.Web/sites', variables('linuxSiteName'))]" |
120 | 124 | ], |
121 | 125 | "properties": { |
122 | | - "repoUrl": "[variables('repoURL')]", |
123 | | - "branch": "[variables('branch')]", |
| 126 | + "repoUrl": "[parameters('repoURL')]", |
| 127 | + "branch": "[parameters('branch')]", |
124 | 128 | "isManualIntegration": true |
125 | 129 | } |
126 | 130 | } |
|
193 | 197 | "[resourceId('Microsoft.Web/sites', variables('windowsSiteName'))]" |
194 | 198 | ], |
195 | 199 | "properties": { |
196 | | - "repoUrl": "[variables('repoURL')]", |
197 | | - "branch": "[variables('branch')]", |
| 200 | + "repoUrl": "[parameters('repoURL')]", |
| 201 | + "branch": "[parameters('branch')]", |
198 | 202 | "isManualIntegration": true |
199 | 203 | } |
200 | 204 | } |
|
0 commit comments