Skip to content

Commit 68c5741

Browse files
Merge pull request #9 from workcontrolgit/develop
Fix appServicePlan SKU: F1 to B1 to match existing Azure resource
2 parents 13c3163 + 7670af2 commit 68c5741

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)