Skip to content

Commit 62f6eb5

Browse files
authored
Fix capitalization in resource not found tsg
1 parent d31914c commit 62f6eb5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-resource-manager/troubleshooting/error-not-found.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ms.date: 11/30/2021
66
ms.custom: devx-track-azurepowershell
77
---
88

9-
# Resolve resource not found errors
9+
# Resolve Resource Not Found errors
1010

1111
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.
1212

13-
## Symptom
13+
## Symptoms
1414

1515
There are two error codes that indicate the resource can't be found. The `NotFound` error returns a result similar to:
1616

@@ -31,7 +31,7 @@ group {resource group name} was not found.
3131

3232
Resource Manager needs to retrieve the properties for a resource, but can't find the resource in your subscription.
3333

34-
## Solution 1 - check resource properties
34+
## Solution 1 - Check resource properties
3535

3636
When you receive this error while doing a management task, check the values you provided for the resource. The three values to check are:
3737

@@ -43,7 +43,7 @@ If you're using PowerShell or Azure CLI, check that you're running commands in t
4343

4444
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.
4545

46-
## Solution 2 - set dependencies
46+
## Solution 2 - Set Dependencies
4747

4848
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.
4949

@@ -115,7 +115,7 @@ When you see dependency problems, you need to gain insight into the order of res
115115

116116
:::image type="content" source="media/error-not-found/deployment-events-sequence.png" alt-text="Screenshot of activity log for resources deployed in sequential order.":::
117117

118-
## Solution 3 - get external resource
118+
## Solution 3 - Get external resource
119119

120120
# [Bicep](#tab/bicep)
121121

@@ -154,7 +154,7 @@ The following example gets the resource ID for a resource that exists in a diffe
154154

155155
---
156156

157-
## Solution 4 - get managed identity from resource
157+
## Solution 4 - Get managed identity from resource
158158

159159
# [Bicep](#tab/bicep)
160160

@@ -199,7 +199,7 @@ Or, to get the tenant ID for a managed identity that is applied to a virtual mac
199199

200200
---
201201

202-
## Solution 5 - check functions
202+
## Solution 5 - Check functions
203203

204204
# [Bicep](#tab/bicep)
205205

@@ -224,7 +224,7 @@ When deploying a template, look for expressions that use the [reference](../temp
224224

225225
---
226226

227-
## Solution 6 - after deleting resource
227+
## Solution 6 - After deleting resource
228228

229229
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**.
230230

0 commit comments

Comments
 (0)