From 3f7289c64da61d5d0569542235350d75c466013f Mon Sep 17 00:00:00 2001 From: Christoph Suesser Date: Mon, 10 Feb 2025 10:35:01 +0100 Subject: [PATCH] Az Arc Server - Changed standard SKU for VM script --- .../resources/demo-vm-creator/create_vms.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/03-Azure/01-03-Infrastructure/02_Hybrid_Azure_Arc_Servers/resources/demo-vm-creator/create_vms.sh b/03-Azure/01-03-Infrastructure/02_Hybrid_Azure_Arc_Servers/resources/demo-vm-creator/create_vms.sh index a6602baa..1e1bb680 100644 --- a/03-Azure/01-03-Infrastructure/02_Hybrid_Azure_Arc_Servers/resources/demo-vm-creator/create_vms.sh +++ b/03-Azure/01-03-Infrastructure/02_Hybrid_Azure_Arc_Servers/resources/demo-vm-creator/create_vms.sh @@ -11,7 +11,7 @@ adminPassword="REPLACE-ME" number_of_participants=10 regions=("germanywestcentral" "northeurope" "swedencentral" "francecentral" "westeurope") -virtualWinMachineSize="Standard_D2ads_v5" # use a vm size with only 2 cores to avoid core limit issues in sponsored subscriptions +virtualWinMachineSize="Standard_D2ds_v4" # use a vm size with only 2 cores to avoid core limit issues in sponsored subscriptions virtualLnxMachineSize="Standard_DS1_v2" # use a vm size with only 1 core to avoid core limit issues in sponsored subscriptions # create a resource group @@ -77,4 +77,4 @@ do az vm run-command invoke -g $resourceGroupName -n $vmName --command-id RunShellScript --scripts @reconfig-ubuntu.sh --no-wait fi -done \ No newline at end of file +done