DEV Community

Cover image for Understanding the Azure Resource Groups and Azure Resources
Digital Craft Workshop
Digital Craft Workshop

Posted on • Originally published at Medium

Understanding the Azure Resource Groups and Azure Resources

AZURE & CLOUD

Understanding the Azure Resource Groups and Azure Resources

Introduction to Azure Resource Groups and Azure Resources. How they are related and what are they capable of.

Understanding the Azure Resource Groups and Azure Resources cover image

Introduction

Once you have your Azure account and access into Azure portal, you are ready to create your first Azure Resource Group and add some resources into it. You will also need a subscription. If you don’t have any of those things then I would recommend you to see my tutorial How to Create an Azure Account.

How to Create a Free Azure Account Step by Step

Guide for creating a free Azure account. What services you can use for free? What is Directory or subscription and what…levelup.gitconnected.com

Azure Resource

Azure Resource is the manageable item in Azure. It includes things like Virtual Machines, Azure Storage Accounts or Azure Web Service. The Azure resource is an instance of Azure Services.

There are three basic divisions of Azure Services.

  • Infrastructure as a Service (IaaS)
  • Platform as a Service (PaaS)
  • Software as a Service (SaaS)

You can find more about divisions in my Introduction to Cloud Computing article.

Introduction to Cloud Computing

Cloud computing is the present and future of software utilization, development and hosting. Let me introduce you its…levelup.gitconnected.com

Whenever Azure Service you want to use, you will find the resource for it. But first, you need the Azure Resource Group.

Side note: if you also lean on AI tooling while you build, I share short, free lessons on getting more out of it in The Claude Code Memory Starter, a tiny email series you can join in one click.

Azure Resource Group

Azure Resource Group is basically a container for Azure Resources. The resource can only exist in one resource group. Resources are not limited by region and can be from different regions. The resource group is not a physical grouping of resources. I covered the topic Azure Regions in my article How to Choose Azure Region.

How to Choose the Azure Region

What you should consider before choosing Azure Region? How Microsoft geographically divide datacentres position to…medium.com

Resources in the resource group shared the same lifecycle, which means you can deploy, update and delete them together. Such operations are possible to do at the resource level too, but general guidance is that if the resource needs to exist on the different deployment cycle, it should be in another resource group.

Resources and resource group can communicate across. For example, you have the Azure Web Service in one resource group and still can communicate with the Azure SQL Database from different resource group.

Illustration

Azure Resource Group icon created by [vecta.io](https://vecta.io/symbols/27/microsoft-azure-mono/110/resourcegroup)

The resource group is also suitable to set security boundaries for the whole group. What can be done with security can also be done with access control. You are able to assign access for the whole group and not for every resource separately.

The pretty cool feature is an export Infrastructure-as-code using Resource Manager Templates. But this I will save for the next time.

Sources

Daniel Rusnok's Newsletter

Every month I will send you an email about with list of my newest articles. It will be ofcourse the friendly links…www.danielrusnok.com

Illustration

If this was useful, you might also enjoy The Claude Code Memory Starter — a short free email series, one bite-sized lesson at a time.

 Related Reading

Top comments (0)