From 410106e81b95bdb767ff9af54ddb7a7306bf2422 Mon Sep 17 00:00:00 2001 From: briggsb9 Date: Tue, 19 Mar 2024 10:05:51 +0000 Subject: [PATCH] vm name shorten fix --- .../AppGW-IAPIM-Func/bicep/parameters.json | 2 +- .../AppGW-IAPIM-Func/bicep/shared/shared.bicep | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reference-implementations/AppGW-IAPIM-Func/bicep/parameters.json b/reference-implementations/AppGW-IAPIM-Func/bicep/parameters.json index 1f91fd4..e2199e9 100644 --- a/reference-implementations/AppGW-IAPIM-Func/bicep/parameters.json +++ b/reference-implementations/AppGW-IAPIM-Func/bicep/parameters.json @@ -30,7 +30,7 @@ "value": "selfsigned or custom" }, "instanceNumber" :{ - "value": "instance number E.G 01" + "value": "instance number E.G 1" } } } \ No newline at end of file diff --git a/reference-implementations/AppGW-IAPIM-Func/bicep/shared/shared.bicep b/reference-implementations/AppGW-IAPIM-Func/bicep/shared/shared.bicep index 13ee60d..07cc660 100644 --- a/reference-implementations/AppGW-IAPIM-Func/bicep/shared/shared.bicep +++ b/reference-implementations/AppGW-IAPIM-Func/bicep/shared/shared.bicep @@ -89,7 +89,7 @@ module vm_jumpboxwinvm './createvmwindows.bicep' = { username: vmUsername password: vmPassword CICDAgentType: CICDAgentType - vmName: 'jumpbox-${resourceSuffix}' + vmName: 'jumpbox-${environment}' vmSize: vmSize } }