A catalog of AI models in Microsoft Foundry that you can discover, compare, and deploy using Azure’s built‑in tools for evaluation, fine‑tuning, and inference
Hello @Praveen Kumar Pudi
Welcome to Microsoft Q&A .Thank you for reaching out to us.
In addition to the inputs provided by Jerald Felix , please check if the following help
The consistent failure pattern across models, regions, and deployment methods provides strong insight into where the issue is occurring.
Model deployment failures are consistently observed across:
- Multiple models
- Multiple regions
- Multiple deployment methods
At the same time, resource creation (account, project, identity) succeeds without issues.
This pattern indicates that requests are successfully reaching the service but are failing during backend validation at the deployment stage, specifically for Microsoft.CognitiveServices/accounts/deployments.
Based on this behavior, the issue is most likely related to:
- Subscription-level entitlement not enabled for the requested models, or
- Quota not allocated for the subscription in the selected regions, or
- Service-side validation blocking deployment provisioning
In such scenarios, deployments may fail with generic errors like 715-123420, even when configuration and templates are correct.
Please check if the following steps help -
- Confirming model availability - please run the command below to verify which models are enabled az cognitiveservices account list-models -n <accountName> -g <resourceGroup> If intended models (for example,
gpt-5.4,text-embedding-3-*) are not listed, deployment will fail due to missing entitlement - Validating quota allocation From the Foundry resource - Quota, verify:
- Tokens per minute (TPM)
- Requests per minute (RPM)
- If quota is zero or not assigned, deployments cannot proceed and may return generic errors
- Validating region and model alignment
- Ensure selected models are supported in the chosen regions
- If required, test in regions with broader availability (for example: Sweden Central, South Central US, West US 3)
- Validating resource configuration
- Confirm resource kind is
AIServices - Ensure deployment uses a supported API version (2024‑10‑01 or later)
- Confirm resource kind is
- Checking policy and deployment restrictions
- Review Azure Policy / deny assignments
- Confirm there are no restrictions on Microsoft.CognitiveServices/accounts/deployments
The following references might be helpful , please check them out
- Deploy models using Azure CLI and Bicep - Microsoft Foundry | Microsoft Learn
- Feature availability across cloud regions - Microsoft Foundry | Microsoft Learn
- How to troubleshoot your deployments and monitors in Microsoft Foundry portal (classic) - Microsoft Foundry (classic) portal | Microsoft Learn
- Azure OpenAI in Microsoft Foundry Models Quotas and Limits - Microsoft Foundry | Microsoft Learn
Thank you