Skip to content

Commit 3ba2195

Browse files
added troubleshooting step for DeploymentOutputEvaluationFailed error
1 parent 5b3b15d commit 3ba2195

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

docs/Troubleshoot.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ Before deploying the resources, you may need to enable the **Bring Your Own Publ
5656
2. Click on the **"Resource groups"** option available on the Azure portal home page.
5757
![alt text](../docs/images/AzureHomePage.png)
5858

59-
60-
6159
3. In the Resource Groups search bar, search for the resource group you intend to target for deployment. If it exists, you can proceed with using it.
6260
![alt text](../docs/images/resourcegroup1.png)
6361

@@ -109,11 +107,18 @@ based on available quota you can deploy application otherwise, you can request f
109107

110108
</details>
111109
<details>
112-
<summary><b>LinkedInvalidPropertyId/ ResourceNotFound</b></summary>
110+
<summary><b>LinkedInvalidPropertyId/ ResourceNotFound/DeploymentOutputEvaluationFailed</b></summary>
113111

114112
- Before using any resource ID, ensure it follows the correct format.
115113
- Verify that the resource ID you are passing actually exists.
116-
- Make sure there are no typos in the resource ID..
114+
- Make sure there are no typos in the resource ID.
115+
- Verify that the provisioning state of the existing resource ID is `Succeeded` by running the following command
116+
117+
```
118+
az resource show --ids <Resource ID> --query "properties.provisioningState"
119+
```
120+
- For more information refer [Resource Not Found errors solutions](https://learn.microsoft.com/en-us/azure/azure-resource-manager/troubleshooting/error-not-found?tabs=bicep)
121+
117122
</details>
118123
<details>
119124
<summary><b>ResourceNameInvalid</b></summary>

0 commit comments

Comments
 (0)