Skip to content

Commit 5860b0e

Browse files
update Azure Portal Home URL
1 parent f2f5ae1 commit 5860b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/TroubleShootingSteps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Use these as quick reference guides to unblock your deployments.
4545

4646
| Issue/Error Code | Description | Steps to Resolve |
4747
|-----------------|-------------|------------------|
48-
| **ResourceGroupNotFound** | Specified resource group does not exist | **Option 1:**<br>1. Go to [Azure Portal](https:/portal.azure.com/#home)<br>2. Click on **"Resource groups"** option<br>![alt text](../docs/images/AzureHomePage.png)<br>3. Search for the resource group in the search bar. If it exists, you can proceed<br>![alt text](../docs/images/resourcegroup1.png)<br><br>**Option 2:**<br>- This error can occur if you deploy using the same .env file from a previous deployment<br>- Create a new environment before redeploying:<br>`azd env new <env-name>` |
48+
| **ResourceGroupNotFound** | Specified resource group does not exist | **Option 1:**<br>1. Go to [Azure Portal](https://portal.azure.com/#home)<br>2. Click on **"Resource groups"** option<br>![alt text](../docs/images/AzureHomePage.png)<br>3. Search for the resource group in the search bar. If it exists, you can proceed<br>![alt text](../docs/images/resourcegroup1.png)<br><br>**Option 2:**<br>- This error can occur if you deploy using the same .env file from a previous deployment<br>- Create a new environment before redeploying:<br>`azd env new <env-name>` |
4949
| **ResourceGroupBeingDeleted** | Resource group is currently being deleted | **Steps:**<br>1. Go to [Azure Portal](https://portal.azure.com/#home)<br>2. Go to resource group option and search for targeted resource group<br>3. If the resource group is being deleted, you cannot use it. Create a new one or use a different resource group |
5050
| **DeploymentActive** | Another deployment is already in progress in this resource group | - This occurs when a deployment is already in progress and another deployment is triggered in the same resource group<br>- Cancel the ongoing deployment before starting a new one<br>- Do not initiate a new deployment until the previous one is completed |
5151
| **DeploymentCanceled** | Deployment was canceled before completion | 1. **Check deployment history:**<br> - Go to Azure Portal → Resource Group → Deployments<br> - Review the detailed error message<br>2. **Identify the root cause:**<br> - Dependent resource failed to deploy<br> - Validation error occurred<br> - Manual cancellation was triggered<br>3. **Validate template:**<br> `az deployment group validate --resource-group <rg-name> --template-file main.bicep`<br>4. **Check resource limits/quotas**<br>5. **Fix the failed dependency**<br>6. **Retry deployment:**<br> `az deployment group create --resource-group <rg-name> --template-file main.bicep`<br><br>💡 **Note:** DeploymentCanceled is a wrapper error — check inner errors in deployment logs |

0 commit comments

Comments
 (0)