Skip to content

Commit 56f4f84

Browse files
committed
Update azuredeploy.bicep
1 parent 16bcd56 commit 56f4f84

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Labs/deploy/azuredeploy.bicep

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,17 +93,21 @@ var appServiceSettings = {
9393
}
9494
web: {
9595
name: '${name}-web'
96+
/*
9697
git: {
9798
repo: appGitRepository
9899
branch: appGetRepositoryBranch
99100
}
101+
*/
100102
}
101103
function: {
102104
name: '${name}-function'
105+
/*
103106
git: {
104107
repo: appGitRepository
105108
branch: appGetRepositoryBranch
106109
}
110+
*/
107111
}
108112
}
109113

@@ -226,7 +230,7 @@ resource appServiceWeb 'Microsoft.Web/sites@2022-03-01' = {
226230
}
227231

228232
resource storageAccount 'Microsoft.Storage/storageAccounts@2021-09-01' = {
229-
name: '${name}fnstorage'
233+
name: '${replace(toLower(name), '-', '')}fnstorage'
230234
location: location
231235
kind: 'Storage'
232236
sku: {

0 commit comments

Comments
 (0)