Skip to content

Commit a137a38

Browse files
fix: update App Service SKU from PremiumV2 to Basic (B2)
1 parent 67225f2 commit a137a38

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

infra/main.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,9 +400,9 @@ resource frontendAppServicePlan 'Microsoft.Web/serverfarms@2021-02-01' = {
400400
location: solutionLocation
401401
tags: tags
402402
sku: {
403-
name: 'P1v2'
403+
name: 'B2'
404404
capacity: 1
405-
tier: 'PremiumV2'
405+
tier: 'Basic'
406406
}
407407
properties: {
408408
reserved: true

infra/main.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"_generator": {
77
"name": "bicep",
88
"version": "0.35.1.17967",
9-
"templateHash": "2907054203534234249"
9+
"templateHash": "12016977205829849477"
1010
}
1111
},
1212
"parameters": {
@@ -702,9 +702,9 @@
702702
"location": "[variables('solutionLocation')]",
703703
"tags": "[parameters('tags')]",
704704
"sku": {
705-
"name": "P1v2",
705+
"name": "B2",
706706
"capacity": 1,
707-
"tier": "PremiumV2"
707+
"tier": "Basic"
708708
},
709709
"properties": {
710710
"reserved": true

0 commit comments

Comments
 (0)