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
Quotas are applied per resource group, subscriptions, accounts, and other scopes. For example, your subscription might be configured to limit the number of vCPUs for a region. If you attempt to deploy a virtual machine with more vCPUs than the permitted amount, you receive an error that the quota was exceeded.
78
79
For PowerShell, use the `Get-AzVMUsage` cmdlet to find virtual machine quotas.
79
80
```ps
@@ -84,11 +85,14 @@ based on available quota you can deploy application otherwise, you can request f
84
85
85
86
<details>
86
87
<summary><b>InsufficientQuota</b></summary>
88
+
87
89
Before deployment check for quota available with your subscription to check quota refer [quota_check](../docs/quota_check.md) file.
If you hardcode the GPT model or version to anything other than gpt-4o, you will encounter a <b>DeploymentModelNotSupported</b> prevent this, please use the GPT model <b>gpt-4o</b> with model version <b>2024-08-06</b>.
94
98
@@ -118,6 +122,7 @@ based on available quota you can deploy application otherwise, you can request f
118
122
</details>
119
123
<details>
120
124
<summary><b>Workspace Name - InvalidParameter</b></summary>
125
+
121
126
To avoid this errors in workspace ID follow below rules.
122
127
1. Must start and end with an alphanumeric character (letter or number).
123
128
2. Allowed characters:
@@ -131,34 +136,39 @@ based on available quota you can deploy application otherwise, you can request f
131
136
</details>
132
137
<details>
133
138
<summary><b>BadRequest: Dns record under zone Document is already taken</b></summary>
139
+
134
140
This error can occur only when user hardcoding the CosmosDB Service name. To avoid this you can try few below suggestions.
135
141
- Verify resource names are globally unique.
136
142
- If you already created an account/resource with same name in another subscription or resource group, check and delete it before reusing the name.
137
143
- By dedault in this template we are using unique prefix with every resource/account name to avoid this kind for errors.
- The AccountProvisioningStateInvalid error occurs when you try to use resources while they are still in the Accepted provisioning state.
156
165
- This means the deployment has not yet fully completed.
157
166
- To avoid this error, waituntil the provisioning state changes to Succeeded.
158
167
- Only use the resources once the deployment is fully completed.
159
168
</details>
160
169
<details>
161
170
<summary><b>VaultNameNotValid</b></summary>
171
+
162
172
In this template Vault name will be unique everytime, but if you trying to hard code the name then please make sure below points.
163
173
1. Check name length
164
174
- Ensure the Key Vault name is between 3 and 24 characters.
@@ -176,6 +186,7 @@ This error can occur only when user hardcoding the CosmosDB Service name. To avo
176
186
</details>
177
187
<details>
178
188
<summary><b>DeploymentCanceled</b></summary>
189
+
179
190
There might be multiple resions for this error you can follow below steps to troubleshoot.
180
191
1. Check deployment history
181
192
- Go to Azure Portal → Resource Group → Deployments.
@@ -226,6 +237,7 @@ Essentially: DeploymentCanceled itself is just a wrapper error — you need to c
226
237
<details>
227
238
228
239
<summary><b>DeploymentActive</b></summary>
240
+
229
241
- This issue occurs when a deployment is already in progress and another deployment is triggered in the same resource group, causing a DeploymentActive error.
230
242
- Cancel the ongoing deployment before starting a new one.
231
243
- Do not initiate a new deployment in the same resource group until the previous one is completed.
0 commit comments