From 11531d0b182df8fe3e4fe0b1ec0b6afc765d2215 Mon Sep 17 00:00:00 2001 From: Peter De Tender <62486122+petender@users.noreply.github.com> Date: Sat, 24 Jan 2026 12:32:50 -0800 Subject: [PATCH] Update webAppName parameter to remove default value Removed default value generation for web app name parameter. --- infra/webapp.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/webapp.bicep b/infra/webapp.bicep index b85e27b45..52da333cf 100644 --- a/infra/webapp.bicep +++ b/infra/webapp.bicep @@ -1,4 +1,4 @@ -param webAppName string = uniqueString(resourceGroup().id) // Generate unique String for web app name +param webAppName string // = uniqueString(resourceGroup().id) // unique String gets created from az cli instructions param sku string = 'S1' // The SKU of App Service Plan param location string = resourceGroup().location