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.
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.
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
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
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
- [LINK PLACEHOLDER - https://medium.com/@danielrusnok/introduction-to-cloud-computing-235e530b9fe0] — _Introduction to Cloud Computing_
- [LINK PLACEHOLDER - https://medium.com/@danielrusnok/how-to-create-a-free-azure-account-step-by-step-348d4991ae6e] — _How to Create a Free Azure Account Step by Step_
- [LINK PLACEHOLDER - https://medium.com/@danielrusnok/how-to-choose-the-azure-region-2a7bfd5ef864] — _How to Choose the Azure Region_
- [LINK PLACEHOLDER - https://medium.com/@danielrusnok/how-to-implement-azure-functions-in-any-language-with-custom-handlers-78e627264ccb] — _How to Implement Azure Functions in any Language with Custom Handlers_



Top comments (0)