We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16bcd56 commit 56f4f84Copy full SHA for 56f4f84
Labs/deploy/azuredeploy.bicep
@@ -93,17 +93,21 @@ var appServiceSettings = {
93
}
94
web: {
95
name: '${name}-web'
96
+ /*
97
git: {
98
repo: appGitRepository
99
branch: appGetRepositoryBranch
100
101
+ */
102
103
function: {
104
name: '${name}-function'
105
106
107
108
109
110
111
112
113
@@ -226,7 +230,7 @@ resource appServiceWeb 'Microsoft.Web/sites@2022-03-01' = {
226
230
227
231
228
232
resource storageAccount 'Microsoft.Storage/storageAccounts@2021-09-01' = {
229
- name: '${name}fnstorage'
233
+ name: '${replace(toLower(name), '-', '')}fnstorage'
234
location: location
235
kind: 'Storage'
236
sku: {
0 commit comments