A unified Azure platform for creating and managing AI models, agents, and applications with built‑in enterprise security, monitoring, and governance
Hello @Jeff Brown
Based on what you've tested, this doesn't look like a naming, quota, or basic resource-provider registration problem.
Microsoft's current documentation confirms that a Foundry resource is created as Microsoft.CognitiveServices/accounts with kind AIServices and SKU S0. It also notes that the subscription must be permitted to create this resource type.
Since:
- Microsoft.CognitiveServices is registered,
- quota/capacity is available,
- Azure Policy isn't blocking Cognitive Services,
- unique resource names fail,
- two different supported regions fail, and
- the resources reach a terminal Failed state with only InternalServerError,
I would focus next on the subscription entitlement and Cognitive Services backend provisioning path, especially since this is a sponsored subscription.
As a useful diagnostic, try creating the resource directly through Azure CLI:
az cognitiveservices account create \
--name <unique-name> \
--resource-group forgewarden-dev \
--kind AIServices \
--sku S0 \
--location westus3 \
--yes
This is the creation method documented by Microsoft. If that also returns InternalServerError, it would further rule out the Foundry portal itself.
I would not keep deleting and recreating resources across regions. An ARM InternalServerError is intentionally generic and doesn't expose the underlying service-side failure to the customer. The Cognitive Services REST API documentation confirms that unsuccessful account creation can return an ErrorResponse, but it doesn't provide a client-side remediation for a generic internal server failure.
At that point, Microsoft Support would need to inspect the backend operation. Provide them with the subscription offer/type, failed resource IDs, regions, exact UTC timestamps, Activity Log operation/correlation IDs, and the CLI failure output. Ask them specifically to verify whether the subscription is entitled to provision Microsoft.CognitiveServices/accounts with kind=AIServices.
So I wouldn't treat this as a confirmed regional capacity issue yet. The fact that independent AIServices resource creation fails in multiple regions on the same subscription makes a subscription-specific entitlement or service-side provisioning issue the stronger possibility.
Sharing you these references:
Microsoft Learn – Create a Foundry resource | https://learn.microsoft.com/en-us/azure/ai-services/multi-service-resource?
Microsoft Learn – Cognitive Services Accounts Create REST API | https://learn.microsoft.com/en-us/rest/api/aiservices/accountmanagement/accounts/create?
Please "Accept the Answer" if this information helped you. This will help us and others in the community as well.