Hi Sadiinso ,
Thank You for reaching out to Microsoft Q&A forum.
Below list of Azure VM series which supports Emerald Rapids processor are :
- Dsv6 Series
- Ddsv6 Series
- Esv6 Series
- FXmsv2 Series
However if you are trying to create a VM from above VM series which is in preview, sometimes you cannot create a VM because their availability is restricted to particular regions or your subscription is not supported.
To manage preview features in your Azure subscription, some preview features are available to anyone who wants to opt in whereas other preview features require approval from the product team. Preview features let you opt in to new functionality before it's released.
Whenever you are trying to create a VM which is in preview, you have to Register a preview feature in your Azure subscription to expose more functionality for a resource provider.
If you want to register a feature using Azure Cloud Shell, Login to account and ensure correct subscription is selected and execute below command to register.
Before executing the command to register a feature, first verify the list of features available for your subscription to register;
az feature list --namespace Microsoft.Compute --query "[].{Name:name, State:properties.state}" --output table
az feature register --namespace Microsoft.Compute --name <FEATURE NAME>
After a preview feature is registered in your subscription, you'll see one of two states: Registered or Pending. -- https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/preview-features?tabs=azure-portal#register-preview-feature
However, to register a feature, all the preview features may not be available for your subscription or in your region.
If the information is helpful, please click on "Accept Answer" and "Upvote"
If you have any further queries, please let me know, we will help you.