Skip to content

Commit 7670af2

Browse files
Fix appServicePlan SKU: update F1 to B1 to match existing Azure resource
1 parent 37b917b commit 7670af2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

infra/modules/appServicePlan.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ resource appServicePlan 'Microsoft.Web/serverfarms@2023-01-01' = {
88
name: appServicePlanName
99
location: location
1010
sku: {
11-
name: 'F1'
12-
tier: 'Free'
11+
name: 'B1'
12+
tier: 'Basic'
1313
}
1414
properties: {
1515
reserved: false // Windows

0 commit comments

Comments
 (0)