From d54539c58fa6b13b3cced68bc80a5cf05e3c4a85 Mon Sep 17 00:00:00 2001 From: Chris Ayers Date: Tue, 7 Nov 2023 11:36:43 -0500 Subject: [PATCH] Update app service and storage account names --- bicep/main.bicep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bicep/main.bicep b/bicep/main.bicep index e28ed7d..cf69ecc 100644 --- a/bicep/main.bicep +++ b/bicep/main.bicep @@ -13,8 +13,8 @@ param environmentType string param resourceNameSuffix string = uniqueString(resourceGroup().id) // Define the names for resources. -var appServiceAppName = 'toy2-website-${resourceNameSuffix}' -var appServicePlanName = 'toy2-website' +var appServiceAppName = 'toy-website-${resourceNameSuffix}' +var appServicePlanName = 'toy-website' var storageAccountName = 'mystorage${resourceNameSuffix}' // Define the SKUs for each component based on the environment type.