From 028b493cd744719a9b9074d2affcb4d07db20934 Mon Sep 17 00:00:00 2001 From: michawets <38206266+michawets@users.noreply.github.com> Date: Wed, 18 Dec 2019 09:38:10 +0100 Subject: [PATCH 1/2] Update to fix the VMDiagnosticsVmExt extension Update to fix the VMDiagnosticsVmExt extension to fix the naming on the virtualMachineScaleSets --- 5-VM-Windows-OMS-UnSecure/sfclusteroms.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/5-VM-Windows-OMS-UnSecure/sfclusteroms.json b/5-VM-Windows-OMS-UnSecure/sfclusteroms.json index 9f33dd9..94a2f5c 100644 --- a/5-VM-Windows-OMS-UnSecure/sfclusteroms.json +++ b/5-VM-Windows-OMS-UnSecure/sfclusteroms.json @@ -462,7 +462,7 @@ } }, { - "name": "[concat('VMDiagnosticsVmExt','_vmNodeType0Name')]", + "name": "[concat(variables('vmNodeType0Name'),'VMDiagnosticsVmExt')]", "properties": { "type": "IaaSDiagnostics", "autoUpgradeMinorVersion": true, @@ -720,4 +720,4 @@ "type": "object" } } -} \ No newline at end of file +} From 9c2636496d9d1cc7490f7acd2bf671d920c084ec Mon Sep 17 00:00:00 2001 From: michawets <38206266+michawets@users.noreply.github.com> Date: Thu, 5 Mar 2020 20:18:38 +0100 Subject: [PATCH 2/2] added '_' for readability As Nicolas has suggested, have I added an '_' before "VMDiagnosticsVmExt", as an addition to the concat issue in the template --- 5-VM-Windows-OMS-UnSecure/sfclusteroms.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-VM-Windows-OMS-UnSecure/sfclusteroms.json b/5-VM-Windows-OMS-UnSecure/sfclusteroms.json index 94a2f5c..f07fe75 100644 --- a/5-VM-Windows-OMS-UnSecure/sfclusteroms.json +++ b/5-VM-Windows-OMS-UnSecure/sfclusteroms.json @@ -462,7 +462,7 @@ } }, { - "name": "[concat(variables('vmNodeType0Name'),'VMDiagnosticsVmExt')]", + "name": "[concat(variables('vmNodeType0Name'),'_VMDiagnosticsVmExt')]", "properties": { "type": "IaaSDiagnostics", "autoUpgradeMinorVersion": true,