DEV Community

Cover image for Demystifying ARM Templates: Introduction to ARM Templates
Frank Boucher ☁ for Microsoft Azure

Posted on • Edited on

9 3

Demystifying ARM Templates: Introduction to ARM Templates

In this tutorial you will learn the what, the why about Azure Resource Manager (ARM) template. Why 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": []
}
Enter fullscreen mode Exit fullscreen mode

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

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (1)

Collapse
 
kaylumah profile image
Max Hamulyák

hi, it appears you mixed up part1 and part2 order. the cover image / video don't match the actual part

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more