From d11a7fb002a34b12c82772c7463b2b9aa7915d94 Mon Sep 17 00:00:00 2001 From: NT Date: Fri, 22 Sep 2023 12:37:18 -0400 Subject: [PATCH] Fix description of allowed environment names in main bicep --- .azure/bicep/main.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure/bicep/main.bicep b/.azure/bicep/main.bicep index e2d332d7b..c5582a920 100644 --- a/.azure/bicep/main.bicep +++ b/.azure/bicep/main.bicep @@ -1,7 +1,7 @@ @description('The location into which your Azure resources should be deployed.') param location string = resourceGroup().location -@description('Select the type of environment you want to provision. Allowed values are Production and Test.') +@description('Select the type of environment you want to provision. Allowed values are Production, Staging, and Development.') @allowed([ 'Production' 'Staging'