Skip to content

Commit 2c42369

Browse files
Merge pull request #228032 from davidsmatlak/ds-ghi-105248
Adds error code to ARM deployments troubleshooting doc
2 parents d1b492b + 0e0c716 commit 2c42369

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/azure-resource-manager/troubleshooting/common-deployment-errors.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot common Azure deployment errors
33
description: Troubleshoot common Azure deployment errors for resources that are deployed with Bicep files or Azure Resource Manager templates (ARM templates).
44
tags: top-support-issue
55
ms.topic: troubleshooting
6-
ms.date: 01/03/2023
6+
ms.date: 02/21/2023
77
ms.custom: devx-track-azurepowershell
88
---
99

@@ -80,6 +80,7 @@ If your error code isn't listed, submit a GitHub issue. On the right side of the
8080
| SubnetIsFull | There aren't enough available addresses in the subnet to deploy resources. You can release addresses from the subnet, use a different subnet, or create a new subnet. | [Manage subnets](../../virtual-network/virtual-network-manage-subnet.md) and [Virtual network FAQ](../../virtual-network/virtual-networks-faq.md#are-there-any-restrictions-on-using-ip-addresses-within-these-subnets) <br><br> [Private IP addresses](../../virtual-network/ip-services/private-ip-addresses.md) |
8181
| SubscriptionNotFound | A specified subscription for deployment can't be accessed. It could be the subscription ID is wrong, the user deploying the template doesn't have adequate permissions to deploy to the subscription, or the subscription ID is in the wrong format. When using ARM template nested deployments to deploy across scopes, provide the subscription's GUID. | [ARM template deploy across scopes](../templates/deploy-to-resource-group.md) <br><br> [Bicep file deploy across scopes](../bicep/deploy-to-resource-group.md) |
8282
| SubscriptionNotRegistered | When a resource is deployed, the resource provider must be registered for your subscription. When you use an Azure Resource Manager template for deployment, the resource provider is automatically registered in the subscription. Sometimes, the automatic registration doesn't complete in time. To avoid this intermittent error, register the resource provider before deployment. | [Resolve registration](error-register-resource-provider.md) |
83+
| SubscriptionRequestsThrottled | Azure Resource Manager throttles requests at the subscription level or tenant level. Resource providers like `Microsoft.Compute` also throttle requests specific to its operations. <br><br> When a limit is reached, you get a message and a value with the amount of time you should wait before sending a new request. For example: `Number of requests for subscription '<subscription-id-guid>' and operation '<resource provider>' exceeded the backend storage limit. Please try again after '6' seconds.` <br><br> An HTTP response returns a message like `HTTP status code 429 Too Many Requests` with a `Retry-After` value that specifies the number of seconds to wait before you send another request. | [Throttling Resource Manager requests](../management/request-limits-and-throttling.md) <br><br> [Troubleshooting API throttling errors - virtual machines](/troubleshoot/azure/virtual-machines/troubleshooting-throttling-errors) <br><br> [Azure Kubernetes Service throttling](/troubleshoot/azure/azure-kubernetes/error-code-subscriptionrequeststhrottled) |
8384
| TemplateResourceCircularDependency | Remove unnecessary dependencies. | [Resolve circular dependencies](error-invalid-template.md#circular-dependency) |
8485
| TooManyTargetResourceGroups | Reduce number of resource groups for a single deployment. | [ARM template deploy across scopes](../templates/deploy-to-resource-group.md) <br><br> [Bicep file deploy across scopes](../bicep/deploy-to-resource-group.md) |
8586

0 commit comments

Comments
 (0)