From a137a38171f1b5259f1a5be2d621ebb18e1e69ac Mon Sep 17 00:00:00 2001 From: Abdul-Microsoft Date: Thu, 15 May 2025 19:37:33 +0530 Subject: [PATCH] fix: update App Service SKU from PremiumV2 to Basic (B2) --- infra/main.bicep | 4 ++-- infra/main.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/infra/main.bicep b/infra/main.bicep index 2dc2db9e8..e464bbacc 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -400,9 +400,9 @@ resource frontendAppServicePlan 'Microsoft.Web/serverfarms@2021-02-01' = { location: solutionLocation tags: tags sku: { - name: 'P1v2' + name: 'B2' capacity: 1 - tier: 'PremiumV2' + tier: 'Basic' } properties: { reserved: true diff --git a/infra/main.json b/infra/main.json index 016be4e7a..248232b9a 100644 --- a/infra/main.json +++ b/infra/main.json @@ -6,7 +6,7 @@ "_generator": { "name": "bicep", "version": "0.35.1.17967", - "templateHash": "2907054203534234249" + "templateHash": "12016977205829849477" } }, "parameters": { @@ -702,9 +702,9 @@ "location": "[variables('solutionLocation')]", "tags": "[parameters('tags')]", "sku": { - "name": "P1v2", + "name": "B2", "capacity": 1, - "tier": "PremiumV2" + "tier": "Basic" }, "properties": { "reserved": true