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/management/overview.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
title: Overview
3
3
description: Describes how to use Azure Resource Manager for deployment, management, and access control of resources on Azure.
4
4
ms.topic: overview
5
-
ms.date: 03/25/2020
5
+
ms.date: 04/21/2020
6
6
---
7
7
# What is Azure Resource Manager?
8
8
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.
10
10
11
11
To learn about Azure Resource Manager templates, see [Template deployment overview](../templates/overview.md).
12
12
@@ -24,10 +24,10 @@ All capabilities that are available in the portal are also available through Pow
24
24
25
25
If you're new to Azure Resource Manager, there are some terms you might not be familiar with.
26
26
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.
28
28
***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).
29
29
***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 groupor 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).
31
31
***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).
32
32
33
33
## The benefits of using Resource Manager
@@ -42,7 +42,7 @@ With Resource Manager, you can:
42
42
43
43
* Define the dependencies between resources so they're deployed in the correct order.
44
44
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.
46
46
47
47
* Apply tags to resources to logically organize all the resources in your subscription.
48
48
@@ -52,11 +52,11 @@ With Resource Manager, you can:
52
52
53
53
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.
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.
58
58
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.
60
60
61
61
## Resource groups
62
62
@@ -66,6 +66,8 @@ There are some important factors to consider when defining your resource group:
66
66
67
67
* Each resource can only exist in one resource group.
68
68
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
+
69
71
* You can add or remove a resource to a resource group at any time.
70
72
71
73
* 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