From bb795d86143473871419b55faafbb62f6bafdf39 Mon Sep 17 00:00:00 2001 From: Josh Meisels Date: Wed, 29 Mar 2017 17:12:55 -0700 Subject: [PATCH] Remove vm_size D1 since it's being deprecated --- algo | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/algo b/algo index 79cef1dc..794d7bc9 100755 --- a/algo +++ b/algo @@ -157,19 +157,17 @@ Enter the number of your desired region: read -p " What size do you want your VM? - 1) Standard D1 (not available in all regions) - 2) Standard D1 v2 - 3) Standard A0 (cheap) - 4) Basic A0 (cheapest) + 1) Standard D1 v2 + 2) Standard A0 (cheap) + 3) Basic A0 (cheapest) Enter the number of your desired size [1]: " -r azure_vm_size azure_vm_size=${azure_vm_size:-1} case "$azure_vm_size" in - 1) vm_size="Standard_D1" - 2) vm_size="Standard_D1_v2" - 3) vm_size="ExtraSmall" - 4) vm_size="Basic_A0" + 1) vm_size="Standard_D1_v2" + 2) vm_size="ExtraSmall" #Conflicting documentation says this might need to be Standard_A0... + 3) vm_size="Basic_A0" esac #source for sizes: https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs