Skip to content

Commit

Permalink
Refactor app-service.bicep to correct app service plan SKU for non-pr…
Browse files Browse the repository at this point in the history
…od environment
  • Loading branch information
alguadam committed Oct 10, 2024
1 parent 1b6897f commit b0fdebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/app-service.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ param appServiceAPIDBHostFLASK_DEBUG string
])
param environmentType string

var appServicePlanSkuName = (environmentType == 'prod') ? 'B1' : 'B2'
var appServicePlanSkuName = (environmentType == 'prod') ? 'B1' : 'B1'

resource appServicePlan 'Microsoft.Web/serverFarms@2022-03-01' = {
name: appServicePlanName
Expand Down

0 comments on commit b0fdebe

Please sign in to comment.