File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ resource cosmosDbAccount 'Microsoft.DocumentDB/databaseAccounts@2024-05-15' = {
183183 }
184184 }
185185 // Enable analytical store for team insights
186- enableAnalyticalStorage : environment == 'prod' ? true : false
186+ enableAnalyticalStorage : false // Not available on all subscription types
187187 }
188188 tags : union (commonTags , { Component : 'database' })
189189}
@@ -294,7 +294,7 @@ resource webApp 'Microsoft.Web/sites@2023-12-01' = {
294294 properties : {
295295 serverFarmId : appServicePlan .id
296296 httpsOnly : true
297- redundancyMode : environment == 'prod' ? 'Manual' : 'None'
297+ redundancyMode : 'None' // Disabled - some subscriptions don't support Manual redundancy
298298 siteConfig : {
299299 linuxFxVersion : 'NODE|20-lts' // Next.js 16 requires Node 20
300300 alwaysOn : environment == 'prod' ? true : false
You can’t perform that action at this time.
0 commit comments