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 @volt-ai ,
Welcome to Microsoft Q&A .Thank you for reaching out to us.
Deployment attempts for Anthropic Claude models are consistently reaching a Failed state, while other models deploy successfully under the same setup.
This confirms that:
- The Foundry resource, region, and base configuration are valid
- The issue is specific to the Anthropic Claude deployment path
Based on analysis and validated scenarios, this behavior is most often caused by one or more of the following:
- ncomplete or missing modelProviderData fields - (industry, organizationName, countryCode not fully passed during deployment)
- Backend provisioning failure during:
- Marketplace subscription creation
- Anthropic organization binding
- Tenant metadata gaps, where required fields are not returned by the platform and fail validation
This means the issue is not due to incorrect deployment steps, but rather due to provider metadata handling or backend provisioning inconsistencies.
Please check if the following validation and troubleshooting steps help-
- Region validation Please confirm project is created in:
- East US 2
- Sweden Central
- Subscription & Access Validation
- Ensure a supported paid subscription is used
- Confirm Marketplace access is enabled
- Deployment Retry Best Practices
- Create a new deployment name (avoid reusing failed name)
- Optionally delete failed deployment and recreate
- Retry after 15–30 minutes to allow backend synchronization
- Verify required roles (Contributor / Owner)
- Project Isolation Test
- Create a new Foundry project
- Attempt deployment in fresh environment
To bypass UI-level inconsistencies, deployment via REST/CLI is recommended, as it allows explicit definition of required fields.
- Preparing payload
{ "sku": { "name": "GlobalStandard", "capacity": 1 }, "properties": { "model": { "format": "Anthropic", "name": "claude-opus-4-8", "version": "1" }, "modelProviderData": { "industry": "technology", "organizationName": "Contoso Ltd", "countryCode": "US" } } } - Deploy using CLI
az rest --method put \ --url "https://management.azure.com/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.CognitiveServices/accounts/<account-name>/deployments/<deployment-name>?api-version=2024-10-01" \ --headers "Content-Type=application/json" \ --body @deployment.json
Please note to
- Use lowercase values for industry
- Ensure all three fields are explicitly present
If the same failure persists after:
- clean deployment attempt
- REST/CLI deployment
- validation of subscription and region
then the issue should be treated as a backend provisioning problem, requiring investigation into:
- provider metadata population
- Marketplace integration workflow
- Anthropic organization creation step
We have reached out to you on private messenger to assist you further.
The following references might be helpful , please check them out
Please let us know if the response was helpful
Thank you