From 1a216fcaf3c492cced912f176a8ca2edbabe9475 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 19 Aug 2025 16:40:03 +0000 Subject: [PATCH 1/2] Initial plan From 4613f4c3176b9ffccc4b0f6d4a4acdedd3e7c345 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 19 Aug 2025 16:44:33 +0000 Subject: [PATCH 2/2] Update Bicep template to reflect Azure Web App scale-up operation Co-authored-by: mrsharm <68247673+mrsharm@users.noreply.github.com> --- main.bicep | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.bicep b/main.bicep index 3625799..b65a9d5 100644 --- a/main.bicep +++ b/main.bicep @@ -3,14 +3,14 @@ param location string = resourceGroup().location param appServicePlanName string = 'cpu-app20250714124552Plan' -param webAppName string = 'test_webapp' +param webAppName string = 'cpu-app' resource appServicePlan 'Microsoft.Web/serverfarms@2022-03-01' = { name: appServicePlanName location: location sku: { - name: 'F1' - tier: 'Free' + name: 'S3' + tier: 'Standard' } kind: 'app' }