Skip to content
This repository was archived by the owner on Jun 11, 2026. It is now read-only.

Latest commit

 

History

History
47 lines (31 loc) · 1.41 KB

File metadata and controls

47 lines (31 loc) · 1.41 KB

1 - Demystifying ARM Templates: Introduction to ARM Templates

In this tutorial you will learn the what, the why about Azure Resource manager (ARM) template. We will talk about declarative, idempotency.

Azure DevOps - DevOps Lab - Video


What it is

Azure Resource manager (ARM) template is a way to describe your infrastructure....

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {},
    "variables": {},
    "resources": [],
    "outputs": {},
    "functions": []
}

Why

Here are some advantages to use ARM template :

  • A template file is light and easy to keep in a repository.
  • It's very simple to have the exact same template deployed in multiple environments.
  • The template is idempotent.
  • ARM templates are really fast to deploy.
  • Easy to edit/ customize/ expand.
  • Easy to delete.

References

Episode/ Module 2 -->