A community member has associated this post with a similar question:
How to fix subscription issue

Only moderators can edit this content.

Impossible de créer un point de terminaison Azure ML malgré fournisseurs enregistrés

ronan garcia 0 Reputation points
2025-06-27T12:18:07.0333333+00:00

Bonjour,

Je rencontre une erreur lors de la tentative de création d'un point de terminaison en ligne dans Azure Machine Learning. L'erreur affichée est :

"Resource provider [N/A] isn't registered with Subscription [N/A]."

Pour résoudre le problème, j'ai suivi les étapes suivantes :

  • J'ai bien vérifié que tous les fournisseurs de ressources nécessaires (MachineLearningServices, CognitiveServices, Storage, Network, DevTestLab, etc.) sont enregistrés dans mon abonnement.
  • J'ai créé un nouvel espace de travail dans la région Europe, pensant que cela pouvait être un problème de localisation.
  • L'erreur persiste malgré toutes les vérifications.

Je suspecte que le problème soit lié à un manque d’autorisations RBAC spécifiques, notamment l'autorisation AcrPull et Lecteur des données Blob du stockage que je n’ai pas encore validé ou configuré.

Pouvez-vous m’aider à confirmer si le problème vient bien des autorisations RBAC et m’indiquer la procédure pour m'assurer que toutes les permissions nécessaires sont bien attribuées ?

Merci d’avance pour votre aide.

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

1 answer

Sort by: Most helpful
  1. Amira Bedhiafi 33,866 Reputation points Volunteer Moderator
    2025-06-30T12:35:11.3333333+00:00

    Hello Ronan !

    In your case Azure is trying to use a resource provider that is still un-registered in the subscription. For managed (online) endpoints in Azure ML, two providers that are not enabled by default are frequently required:

    Resource provider Why Azure ML needs it
    Microsoft.Cdn The public inference endpoint sits behind an Azure Front Door / CDN edge
    Microsoft.Cdn The public inference endpoint sits behind an Azure Front Door / CDN edge
    Microsoft.PolicyInsights Endpoint creation calls the Policy Insights API to check policy compliance

    If either of these is missing you get the generic “N/A” error, even when all the obvious providers such as Microsoft.MachineLearningServices, Storage, Network... are already registered.

    Try registering Microsoft.Cdn and Microsoft.PolicyInsights immediately, it will help you resolve the error (Occasionally, regions such as Switzerland North also require Microsoft.ApiManagement)

    Links to help you :

    https://stackoverflow.com/questions/79093710/unable-to-create-the-online-endpoint

    https://learn.microsoft.com/en-us/answers/questions/2129910/resource-provider-%28n-a%29-isnt-registered-with-subsc

    https://learn.microsoft.com/en-us/answers/questions/1983847/error-while-creating-a-managed-online-endpoint-in?utm_source=chatgpt.com

    0 comments No comments