Understanding Azure Resource Manager: Control and Organize Azure Resources
On < 1 minuteIn this post series, we will discuss the Azure Resource Manager (ARM) and how you can use it to control and organize your Azure resources.
The main purpose of ARM is to control and organize your resources in Azure. It gives you features that you can use to organize resources, enforce standards, and protect critical Azure resources from accidental deletion. What are these features?
- Resource groups – to organize Azure resources
- Tags – to organize resources
- Policies – to enforce standards in your Azure environments
- Resource locks – to protect critical Azure resources from accidental deletion
Consistent naming convention
It is important to name resources consistently by having a naming conversion. One of the best practices is to use a combination of
- Unique name
- the type of resource it is
Examples will be prod-vnet
, sap-db
Other posts in this series
- Understanding Azure Resource Manager: Control and Organize Azure Resources
- Understanding Azure Resource Manager: Resource Groups
- Understanding Azure Resource Manager: Take advantage of Tags
- Understanding Azure Resource Manager: Enforce Standards Using Policies
- Understanding Azure Resource Manager: Use resource locks to protect resources