Skip to content

Commit 3cf6d2c

Browse files
authored
Merge pull request #112245 from tfitzmac/0421overview
update overview for scopes
2 parents 3165c4f + b1df7c4 commit 3cf6d2c

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

articles/azure-resource-manager/management/overview.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Overview
33
description: Describes how to use Azure Resource Manager for deployment, management, and access control of resources on Azure.
44
ms.topic: overview
5-
ms.date: 03/25/2020
5+
ms.date: 04/21/2020
66
---
77
# What is Azure Resource Manager?
88

9-
Azure Resource Manager is the deployment and management service for Azure. It provides a management layer that enables you to create, update, and delete resources in your Azure subscription. You use management features, like access control, locks, and tags, to secure and organize your resources after deployment.
9+
Azure Resource Manager is the deployment and management service for Azure. It provides a management layer that enables you to create, update, and delete resources in your Azure account. You use management features, like access control, locks, and tags, to secure and organize your resources after deployment.
1010

1111
To learn about Azure Resource Manager templates, see [Template deployment overview](../templates/overview.md).
1212

@@ -24,10 +24,10 @@ All capabilities that are available in the portal are also available through Pow
2424

2525
If you're new to Azure Resource Manager, there are some terms you might not be familiar with.
2626

27-
* **resource** - A manageable item that is available through Azure. Virtual machines, storage accounts, web apps, databases, and virtual networks are examples of resources.
27+
* **resource** - A manageable item that is available through Azure. Virtual machines, storage accounts, web apps, databases, and virtual networks are examples of resources. Resource groups, subscriptions, management groups, and tags are also examples of resources.
2828
* **resource group** - A container that holds related resources for an Azure solution. The resource group includes those resources that you want to manage as a group. You decide which resources belong in a resource group based on what makes the most sense for your organization. See [Resource groups](#resource-groups).
2929
* **resource provider** - A service that supplies Azure resources. For example, a common resource provider is Microsoft.Compute, which supplies the virtual machine resource. Microsoft.Storage is another common resource provider. See [Resource providers and types](resource-providers-and-types.md).
30-
* **Resource Manager template** - A JavaScript Object Notation (JSON) file that defines one or more resources to deploy to a resource group or subscription. The template can be used to deploy the resources consistently and repeatedly. See [Template deployment overview](../templates/overview.md).
30+
* **Resource Manager template** - A JavaScript Object Notation (JSON) file that defines one or more resources to deploy to a resource group, subscription, management group, or tenant. The template can be used to deploy the resources consistently and repeatedly. See [Template deployment overview](../templates/overview.md).
3131
* **declarative syntax** - Syntax that lets you state "Here is what I intend to create" without having to write the sequence of programming commands to create it. The Resource Manager template is an example of declarative syntax. In the file, you define the properties for the infrastructure to deploy to Azure. See [Template deployment overview](../templates/overview.md).
3232

3333
## The benefits of using Resource Manager
@@ -42,7 +42,7 @@ With Resource Manager, you can:
4242

4343
* Define the dependencies between resources so they're deployed in the correct order.
4444

45-
* Apply access control to all services in your resource group because Role-Based Access Control (RBAC) is natively integrated into the management platform.
45+
* Apply access control to all services because Role-Based Access Control (RBAC) is natively integrated into the management platform.
4646

4747
* Apply tags to resources to logically organize all the resources in your subscription.
4848

@@ -52,11 +52,11 @@ With Resource Manager, you can:
5252

5353
Azure provides four levels of scope: [management groups](../../governance/management-groups/overview.md), subscriptions, [resource groups](#resource-groups), and resources. The following image shows an example of these layers.
5454

55-
![Scope](./media/overview/scope-levels.png)
55+
![Management levels](./media/overview/scope-levels.png)
5656

5757
You apply management settings at any of these levels of scope. The level you select determines how widely the setting is applied. Lower levels inherit settings from higher levels. For example, when you apply a [policy](../../governance/policy/overview.md) to the subscription, the policy is applied to all resource groups and resources in your subscription. When you apply a policy on the resource group, that policy is applied the resource group and all its resources. However, another resource group doesn't have that policy assignment.
5858

59-
You can deploy templates to management groups, subscriptions, or resource groups.
59+
You can deploy templates to tenants, management groups, subscriptions, or resource groups.
6060

6161
## Resource groups
6262

@@ -66,6 +66,8 @@ There are some important factors to consider when defining your resource group:
6666

6767
* Each resource can only exist in one resource group.
6868

69+
* Some resources can exist outside of a resource group. These resources are deployed to the [subscription](../templates/deploy-to-subscription.md), [management group](../templates/deploy-to-management-group.md), or [tenant](../templates/deploy-to-tenant.md). Only specific resource types are supported at these scopes.
70+
6971
* You can add or remove a resource to a resource group at any time.
7072

7173
* You can move a resource from one resource group to another group. For more information, see [Move resources to new resource group or subscription](move-resource-group-and-subscription.md).

0 commit comments

Comments
 (0)