Reputation: 11
I'm trying to create a VM on Azure Confidential Computing service, but I always get the same error during the validation phase: an invalid template deployment error.
I've tried with different combinations of configurations, but to no avail:
I've also tried to create a normal VM on West Europe and it went well. So at the moment I'm completely clueless on how to solve this problem.
Below you find an excerpt of the error message I'm getting:
InvalidTemplateDeploymentThe template deployment failed with error: 'The resource with id: '/subscriptions/9b389ced-1bbf-40ab-919f-a10e7a960ed8/resourceGroups/ACC-Ubuntu1604-01-RG/providers/Microsoft.Compute/virtualMachines/ACC-Ubuntu-1604-01' failed validation with message: 'The requested size for resource '/subscriptions/9b389ced-1bbf-40ab-919f-a10e7a960ed8/resourceGroups/ACC-Ubuntu1604-01-RG/providers/Microsoft.Compute/virtualMachines/ACC-Ubuntu-1604-01' is currently not available in location 'westeurope' zones '' for subscription '9b389ced-1bbf-40ab-919f-a10e7a960ed8'. Please try another size or deploy to a different location or zones. See https://aka.ms/azureskunotavailable for details.'.'.
Thanks!
Upvotes: 1
Views: 410
Reputation: 16
You should be able to deploy with the newest family of ACC VMs - DCsv2-Series in UK South and Canada Central. Please follow the steps here.
Upvotes: 0
Reputation: 28304
You can find Confidential Compute DC-series virtual machines in the directory in the Azure Marketplace or by searching the Azure Portal Marketplace for Confidential Compute.
I tried that deployment within EastUs region.
For more details, you could refer to this article https://software.intel.com/en-us/articles/get-started-with-azure-confidential-computing.
Upvotes: 0
Reputation: 72141
Basically what it says - this size is not available for this region. You can get list of available skus for the region with:
Get-AzComputeResourceSku | where {$_.Locations -icontains "region_name"}
or you can search for skus available for the region here
Upvotes: 0