Skip to content

Commit be513f7

Browse files
Zain AhmedZain Ahmed
authored andcommitted
chore: switch App Service to F1 Free tier for /bin/zsh cost
1 parent bd91dab commit be513f7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

infrastructure/bicep/main.bicep

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ param clientId string
2525
@description('App Service Plan SKU configuration')
2626
param appServicePlanSku object = {
2727
dev: {
28-
name: 'B1'
29-
tier: 'Basic'
28+
name: 'F1'
29+
tier: 'Free'
3030
}
3131
prod: {
32-
name: 'B1'
33-
tier: 'Basic'
32+
name: 'F1'
33+
tier: 'Free'
3434
}
3535
}
3636

@@ -297,7 +297,7 @@ resource webApp 'Microsoft.Web/sites@2023-12-01' = {
297297
redundancyMode: 'None' // Disabled - some subscriptions don't support Manual redundancy
298298
siteConfig: {
299299
linuxFxVersion: 'NODE|20-lts' // Next.js 16 requires Node 20
300-
alwaysOn: environment == 'prod' ? true : false
300+
alwaysOn: false // Free tier (F1) doesn't support alwaysOn
301301
ftpsState: 'Disabled'
302302
minTlsVersion: '1.2'
303303
http20Enabled: true

0 commit comments

Comments
 (0)