[NEWS] Azure News of the week
5. Juli 2024Also this week there were many news around Microsoft Azure! Here as always the overview for you: Have fun reading and trying it out… Dieser Post ist auch verfügbar auf: Englisch
Most people start with Azure using the Azure Portal – but if you want to scale, if you have a big deployment or you want to have continous control over your environment, you should have a look into Azure Resource Manager aka ARM Templates.
There is an important difference between Azure Resource Manager and the ARM Templates. Sometime people are mixing this up, this is why I want to cover this first.
The Azure Resource Manager is the Deployment and Management Service that is running in Azure. It is the layer between all management tools and ways, like PowerShell, CLI, Portal, SDKs, etc., and the Resources in Microsoft Azure.
The Resource Manager is a globally scaled API, available at management.azure.com which is used to control Azure. If you want to check this, just do an easy lookup and you will find out that the ARM API is a global scaled setup of Cloud Services, using Traffic Managerand multiple layers of abstraction:
Having seen this, no we have the open question: What is the difference to ARM templates? Or, where do they fit in?
Easy answer … the Azure Resource Manager can be used without Templates, e.g. via the Portal. But ARM Templates have to be processed by the Azure Resource Manager. So ARM Templates are another way of input.
ARM Templates or Azure Resource Manager Templates are input into the Azure Resource Manager. While you are generating a lot of PUT actions to the API, while using the Azure Portal or running PowerShell commands one after each other, with ARM Templates you create a single call with all information at once.
The benefit of this is that out of the Template the Resource Manager will orchestrate all necessary actions. So if it is possible to deploy resources at the same time, it will be done. So instead of waiting for loops in a PowerShell script you could create hundreds of services at once.
Another good thing is, that all ARM Templates are validated before execution. So if there is a missing dependency, a problem with Policies or any other issue, the deployment wont start. Compared to sequential deployments with PowerShell or CLI where resources are created one by one and it fails at a later point without cleaning up, that is pretty nice.
There are many more pros of using templates, like repeatable deployments, change tracking in file, etc.
But to be honest … it is also not that easy to get started with the declarative form of ARM.
If you want to create a template deployment, one way could be a Template Deployment from the Azure Portal:
Here you start with a blank file, that only gives the basic structure of the Template. As you can see templates are written in an JSON notation.
You can also go to the Quickstart Templates where can find many different precreated templates.
Another way to get into contact with Templates, is to have a look into existing Resources in Azure. There are actually two options to get ARM Templates out of them. One option is the „Template Export“ which will show an ARM Template for the current state. Unfortunately in most cases not everything inside a resource group can be exported in a template.
Another option is a look into the deployments section. Here you can find a deployments that have been executed to this Scope. The good thing about the Deployments section is, that it states the input at the time of initiation. No matter what happened in the portal afterwards. The export would include those changes, the Deployment does not:
When you open the Deployment you can find the original template and parameters. So this can also be used to figure out any changes made afterwards.
On LinkedIn Learning I have a nice course (German) about Azure Resource Manager and ARM Templates
There are also some nice GitHub Repos with good examples / templates:
Also you can find a lot of information in Docs and in the Azure Learning Paths
happy templating 🙂
Dieser Post ist auch verfügbar auf: Englisch
Leave a comment