Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Azure Resource Groups & Resource Manager

Tags: resource

Azure Resource Groups & Resource Manager

Organizing structure for resources

  1. Resources: Resources are instances of services that you create, like virtual machines, storage, or SQL databases.
  2. Resource groups: Resources are combined into resource groups, which act as a logical container into which Azure resources like web apps, databases, and storage accounts are deployed and managed.
  3. Subscriptions: A subscription groups together user accounts and the resources created by those user accounts. For each subscription, there are limits or quotas on the amount of resources that you can create and use. Organizations can use subscriptions to manage costs and the resources created by users, teams, or projects.
  4. Management groups: These groups help you manage access, policy, and compliance for multiple subscriptions. All subscriptions in a management group automatically inherit the conditions applied to the management group.

Resource Groups

  1. Resources: are anything you create in an Azure subscription like VMs, Azure Application Gateway instances, and Azure Cosmos DB instances.
  2. A resource group is a logical container that helps manage and organize your Azure resources.
  3. For example similar usage, type, or location
  4. Each resource can exist in only one resource group.
  5. You can move a resource from one resource group to another group.
  6. Resource groups can’t be nested.
  7. The resources in a resource group can be located in different regions than the resource group.
  8. Resource group created at location – to store metadata.
  9. A resource group can be used to scope access control for administrative actions. To manage a resource group, you can assign Azure Policies, Azure roles, or resource locks.
  10. You can apply locks to a resource group or subscription to prevent deletion or make contained resources read-only. You can also apply locks directly to a resource.
  11. You can apply tags to a resource group. The resources in the resource group don’t inherit those tags.
  12. Life cycle: When you delete a resource group, all resources in the resource group are also deleted.
  13. To create a resource group, you can use the portal, PowerShell, Azure CLI, or an ARM template.

Azure Resource Manager (ARM)

  1. Automate resource deployments (create, update, and delete) using templates.
  2. ARM template is a JSON file that defines what you want to deploy to Azure.
  3. Integrates with Azure portal, PowerShell, CLI, and REST API to perform deployment
  4. and management tasks.
  5. Easy way to deploy multiple resource instances or reliably redeploy resources.
  6. ARM template can be used to deploy the resources consistently and repeatedly.
  7. Define the dependencies between resources so they’re deployed in the correct order.



This post first appeared on Learn Big Data Hadoop In Bangalore, please read the originial post: here

Share the post

Azure Resource Groups & Resource Manager

×

Subscribe to Learn Big Data Hadoop In Bangalore

Get updates delivered right to your inbox!

Thank you for your subscription

×