From a0bdb30f86940835b6e80913d3ed18994e4b0858 Mon Sep 17 00:00:00 2001 From: Chris Ayers Date: Tue, 14 Jan 2025 19:44:01 +0000 Subject: [PATCH] Rename app service plan variable for consistency in naming convention --- bicep/main.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bicep/main.bicep b/bicep/main.bicep index cf69ecc..f3c1d39 100644 --- a/bicep/main.bicep +++ b/bicep/main.bicep @@ -14,7 +14,7 @@ param resourceNameSuffix string = uniqueString(resourceGroup().id) // Define the names for resources. var appServiceAppName = 'toy-website-${resourceNameSuffix}' -var appServicePlanName = 'toy-website' +var appServicePlanName = 'toywebsite' var storageAccountName = 'mystorage${resourceNameSuffix}' // Define the SKUs for each component based on the environment type.