An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hello Chris,
Welcome to Microsoft Q&A .Thank you for reaching out.
Adding to the inputs provided by Deepanshu katara , please check if the following helps.
The deployment failure with error code 715‑123420 occurs during ARM preflight validation, which runs before any resources are created. This error indicates that the platform is unable to validate a Cognitive Services model deployment child resource before execution begins. The issue is not caused by template syntax, permissions, or quota, as the same template may succeed in other regions or earlier time windows.
Please check if the following troubleshooting steps help:
- Platform and regional validation - Please review Azure Service Health for any active incidents or advisories impacting Cognitive Services in the UK South region to confirm whether the issue is region‑specific by attempting a validation‑only deployment in a different supported region.
- Tooling and client verification - Ensure that the latest supported version of Azure CLI or ARM tooling is in use, as outdated clients can fail preflight validation.Then retry validating using az deployment group validate or what‑if to confirm the error occurs consistently.
- Deployment method isolation-Temporarily remove the Microsoft.CognitiveServices/accounts/deployments child resource from the ARM or Bicep template.Then deploy the Cognitive Services account first, then create the model deployment separately using Azure CLI or REST to bypass the failing validation path.
- Template and API alignment - Please verify that the ARM or Bicep template uses a supported and current API version for Microsoft.CognitiveServices/accounts and accounts/deployments.Then confirm the deployment model name, version, and SKU are supported in the target region.
References:
Find error codes - Azure Resource Manager | Microsoft Learn
Troubleshoot Bicep file deployments - Azure Resource Manager | Microsoft Learn
What is Azure Service Health? - Azure Service Health | Microsoft Learn
Thank you!