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: articles/azure-resource-manager/troubleshooting/error-not-found.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ ms.date: 11/30/2021
6
6
ms.custom: devx-track-azurepowershell
7
7
---
8
8
9
-
# Resolve resource not found errors
9
+
# Resolve Resource Not Found errors
10
10
11
11
This article describes the error you see when a resource can't be found during an operation. Typically, you see this error when deploying resources with a Bicep file or Azure Resource Manager template (ARM template). You also see this error when doing management tasks and Azure Resource Manager can't find the required resource. For example, if you try to add tags to a resource that doesn't exist, you receive this error.
12
12
13
-
## Symptom
13
+
## Symptoms
14
14
15
15
There are two error codes that indicate the resource can't be found. The `NotFound` error returns a result similar to:
16
16
@@ -31,7 +31,7 @@ group {resource group name} was not found.
31
31
32
32
Resource Manager needs to retrieve the properties for a resource, but can't find the resource in your subscription.
33
33
34
-
## Solution 1 - check resource properties
34
+
## Solution 1 - Check resource properties
35
35
36
36
When you receive this error while doing a management task, check the values you provided for the resource. The three values to check are:
37
37
@@ -43,7 +43,7 @@ If you're using PowerShell or Azure CLI, check that you're running commands in t
43
43
44
44
If you can't verify the properties, sign in to the [Microsoft Azure portal](https://portal.azure.com). Find the resource you're trying to use and examine the resource name, resource group, and subscription.
45
45
46
-
## Solution 2 - set dependencies
46
+
## Solution 2 - Set Dependencies
47
47
48
48
If you get this error when deploying a template, you may need to add a dependency. Resource Manager optimizes deployments by creating resources in parallel, when possible.
49
49
@@ -115,7 +115,7 @@ When you see dependency problems, you need to gain insight into the order of res
115
115
116
116
:::image type="content" source="media/error-not-found/deployment-events-sequence.png" alt-text="Screenshot of activity log for resources deployed in sequential order.":::
117
117
118
-
## Solution 3 - get external resource
118
+
## Solution 3 - Get external resource
119
119
120
120
# [Bicep](#tab/bicep)
121
121
@@ -154,7 +154,7 @@ The following example gets the resource ID for a resource that exists in a diffe
154
154
155
155
---
156
156
157
-
## Solution 4 - get managed identity from resource
157
+
## Solution 4 - Get managed identity from resource
158
158
159
159
# [Bicep](#tab/bicep)
160
160
@@ -199,7 +199,7 @@ Or, to get the tenant ID for a managed identity that is applied to a virtual mac
199
199
200
200
---
201
201
202
-
## Solution 5 - check functions
202
+
## Solution 5 - Check functions
203
203
204
204
# [Bicep](#tab/bicep)
205
205
@@ -224,7 +224,7 @@ When deploying a template, look for expressions that use the [reference](../temp
224
224
225
225
---
226
226
227
-
## Solution 6 - after deleting resource
227
+
## Solution 6 - After deleting resource
228
228
229
229
When you delete a resource, there might be a short amount of time when the resource appears in the portal but isn't available. If you select the resource, you'll get an error that the resource is **Not found**.
0 commit comments