Skip to content

Commit c0ec85c

Browse files
committed
azuredeploy.bicep - add frontend git deployment
1 parent 2947b92 commit c0ec85c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Labs/deploy/azuredeploy.bicep

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,10 @@ var appServiceSettings = {
105105
}
106106
web: {
107107
name: '${name}-web'
108-
/*
109108
git: {
110-
repo: appGitRepository
111-
branch: appGetRepositoryBranch
109+
repo: 'https://github.com/crpietschmann/cosmos-db-dev-guide-frontend-app.git'
110+
branch: 'main'
112111
}
113-
*/
114112
}
115113
api: {
116114
name: '${name}-api'
@@ -284,7 +282,6 @@ resource appServiceWebInsights 'Microsoft.Insights/components@2020-02-02' = {
284282
}
285283
}
286284

287-
/*
288285
resource appServiceWebDeployment 'Microsoft.Web/sites/sourcecontrols@2021-03-01' = {
289286
parent: appServiceWeb
290287
name: 'web'
@@ -297,7 +294,7 @@ resource appServiceWebDeployment 'Microsoft.Web/sites/sourcecontrols@2021-03-01'
297294
appServiceWebSettings
298295
]
299296
}
300-
*/
297+
301298

302299
/* *************************************************************** */
303300
/* API Hosting - Azure Functions */

0 commit comments

Comments
 (0)