You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ _Note: This is not meant to outline all costs as selected SKUs, scaled use, cust
102
102
|---|---|---|
103
103
|[Azure AI Foundry](https://learn.microsoft.com/en-us/azure/ai-foundry/)| Free tier. Build generative AI applications on an enterprise-grade platform. |[Pricing](https://azure.microsoft.com/pricing/details/ai-studio/)|
104
104
|[Azure Storage Account](https://learn.microsoft.com/en-us/azure/storage/blobs/)| Standard tier, LRS. Pricing is based on storage and operations. Blob storage for product images and generated content. |[Pricing](https://azure.microsoft.com/pricing/details/storage/blobs/)|
105
-
|[Azure AI Services](https://learn.microsoft.com/en-us/azure/ai-services/)| S0 tier, defaults to gpt-5.1 (GPT) and gpt-image-1 models. Pricing is based on token count. |[Pricing](https://azure.microsoft.com/pricing/details/cognitive-services/)|
105
+
|[Azure AI Services](https://learn.microsoft.com/en-us/azure/ai-services/)| S0 tier, defaults to gpt-5.1 (GPT) and gpt-image-1-mini models. Pricing is based on token count. |[Pricing](https://azure.microsoft.com/pricing/details/cognitive-services/)|
106
106
|[Azure Container Instance](https://learn.microsoft.com/en-us/azure/container-instances/)| Backend API hosting with private VNet integration. Pricing is based on resource allocation. |[Pricing](https://azure.microsoft.com/pricing/details/container-instances/)|
|[Azure Container Registry](https://learn.microsoft.com/en-us/azure/container-registry/)| Basic tier. Build, store, and manage container images and artifacts in a private registry for all types of container deployments |[Pricing](https://azure.microsoft.com/pricing/details/container-registry/)|
Copy file name to clipboardExpand all lines: archive-doc-gen/docs/TroubleShootingSteps.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Use these as quick reference guides to unblock your deployments.
48
48
|**Unauthorized - Operation cannot be completed without additional quota**| Insufficient quota for requested operation | <ul><li>Check your quota usage using:<br>`az vm list-usage --location "<Location>" -o table`</li><li> To request more quota refer to [VM Quota Request](https://techcommunity.microsoft.com/blog/startupsatmicrosoftblog/how-to-increase-quota-for-specific-types-of-azure-virtual-machines/3792394)</li></ul> |
49
49
|**CrossTenantDeploymentNotPermitted**| Deployment across different Azure AD tenants not allowed | <ul><li> **Check tenant match:** Ensure your deployment identity (user/SP) and the target resource group are in the same tenant:<br>`az account show`<br>`az group show --name <RG_NAME>`</li><li> **Verify pipeline/service principal:** If using CI/CD, confirm the service principal belongs to the same tenant and has permissions on the resource group</li><li> **Avoid cross-tenant references:** Make sure your Bicep doesn't reference subscriptions, resource groups, or resources in another tenant</li><li> **Test minimal deployment:** Deploy a simple resource to the same resource group to confirm identity and tenant are correct</li><li> **Guest/external accounts:** Avoid using guest users from other tenants; use native accounts or SPs in the tenant</li></ul> |
50
50
|**RequestDisallowedByPolicy**| Azure Policy blocking the requested operation | <ul><li> This typically indicates that an Azure Policy is preventing the requested action due to policy restrictions in your subscription</li><li> For more details and guidance on resolving this issue, refer to: [RequestDisallowedByPolicy](https://learn.microsoft.com/en-us/troubleshoot/azure/azure-kubernetes/create-upgrade-delete/error-code-requestdisallowedbypolicy) </li></ul> |
51
-
|**SpecialFeatureOrQuotaIdRequired**| Subscription lacks access to specific Azure OpenAI models | This error occurs when your subscription does not have access to certain Azure OpenAI models.<br><br>**Example error message:**<br>`SpecialFeatureOrQuotaIdRequired: The current subscription does not have access to this model 'Format:OpenAI,Name:o3,Version:2025-04-16'.`<br><br>**Resolution:**<br>To gain access, submit a request using the official form:<br>👉 [Azure OpenAI Model Access Request](https://customervoice.microsoft.com/Pages/ResponsePage.aspx?id=v4j5cvGGr0GRqy180BHbR7en2Ais5pxKtso_Pz4b1_xUQ1VGQUEzRlBIMVU2UFlHSFpSNkpOR0paRSQlQCN0PWcu)<br><br>You'll need to use this form if you require access to the following restricted models:<br><ul><li> gpt-5</li><li> o3</li><li> o3-pro</li><li> deep research</li><li> reasoning summary</li><li> gpt-image-1</li></ul>Once your request is approved, redeploy your resource. |
51
+
|**SpecialFeatureOrQuotaIdRequired**| Subscription lacks access to specific Azure OpenAI models | This error occurs when your subscription does not have access to certain Azure OpenAI models.<br><br>**Example error message:**<br>`SpecialFeatureOrQuotaIdRequired: The current subscription does not have access to this model 'Format:OpenAI,Name:o3,Version:2025-04-16'.`<br><br>**Resolution:**<br>To gain access, submit a request using the official form:<br>👉 [Azure OpenAI Model Access Request](https://customervoice.microsoft.com/Pages/ResponsePage.aspx?id=v4j5cvGGr0GRqy180BHbR7en2Ais5pxKtso_Pz4b1_xUQ1VGQUEzRlBIMVU2UFlHSFpSNkpOR0paRSQlQCN0PWcu)<br><br>You'll need to use this form if you require access to the following restricted models:<br><ul><li> gpt-5</li><li> o3</li><li> o3-pro</li><li> deep research</li><li> reasoning summary</li><li> gpt-image-1-mini</li></ul>Once your request is approved, redeploy your resource. |
52
52
|**ResourceProviderError**| Resource provider not registered in subscription | <ul><li> This error occurs when the resource provider is not registered in your subscription</li><li> To register it, refer to [Register Resource Provider](https://learn.microsoft.com/en-us/azure/azure-resource-manager/troubleshooting/error-register-resource-provider?tabs=azure-cli) documentation </li></ul>|
0 commit comments