Real-time endpoint Automated ML failed deploy

Luis Garcia 0 Reputation points
2025-03-12T02:02:34.4933333+00:00

I did create a model with Automated ML. when i try to deploy the model i am getting the error:

{"code":"SubscriptionNotRegistered","message":"Resource provider [N/A] isn't registered with Subscription [N/A]. Please see troubleshooting guide, available here: https://aka.ms/register-resource-provider","details":[],"additionalInfo":[]}

This question is related to the following Learning Module

Azure Machine Learning
Azure Machine Learning
An Azure machine learning service for building and deploying models.
3,177 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vikram Singh 2,390 Reputation points Microsoft Employee
    2025-03-12T05:00:14.65+00:00

    Hi @Luis Garcia

    Thanks for posting your question in Microsoft Q&A, apologize for any inconvenience caused on this.

    This issue with deploying your Automated ML model due to a resource provider not being registered with your subscription. This is a common issue and can be resolved by following these steps:

    1. Register the Resource Provider: You need to ensure that the required resource providers are registered for your subscription. Specifically, you should register Microsoft.MachineLearningServices and any other necessary providers.
      • Azure Portal:
      1. Go to the Azure Portal.
      2. Navigate to your subscription.
      3. Select "Resource Providers" under the "Settings" section.
      4. Search for Microsoft.MachineLearningServices and click "Register".
      • Azure CLI:
             az provider register --namespace Microsoft.MachineLearningServices
        
    2. Check Subscription Quota: Ensure that your subscription has enough quota for the resources you intend to deploy, particularly for virtual machine sizes.
    3. Verify Permissions: Make sure your account has the required permissions (Contributor role or higher) to perform the deployment.
    4. Try Different Region: If the issue persists, try creating your Azure Machine Learning workspace and deploying your model in a different region.

    For more detailed troubleshooting steps, you can refer to the troubleshooting guide.

    I hope this is helpful! Do let me know if you are still the facing the issue.

    If the reply was helpful, please don't forget to upvote and/or Accept the answer, this can be beneficial to other community members.

    Thanks

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.