Spot instances in Azure Education

Chinmay Patil 1 Reputation point
2020-06-12T01:05:04.043+00:00

As an azure student account user, can I use spot instances? Every time that I have attempted to create one, I always get a validation failed error,
'The requested size for resource '[Vm here]' is currently not available in location 'westus' zones '' for subscription '[My education Subscription]'.
I have tried switching to different zones, and it is always the same error.

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,113 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Manu Philip 16,971 Reputation points MVP
    2020-06-12T06:30:18.65+00:00

    Hello @ChinmayPatil-4169 ,

     Get-AzureRMVMSize -Location 'locationname'
    

    Above cmlet returns all the possible SKUs available for the location disregarding limitations of your subscription. So, try and see the option suitable for your account and create the spot instance available at the location you selected.

    If you need the details of the location name, you can check it using the following cmdlet

     Get-AzureRmLocation |Format-Table
    

    Please mark as "Accept the answer" if the above steps helps you. Others with similar issues can also follow the solution as per your suggestion

    Regards,

    Manu