Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 960 Bytes

README.md

File metadata and controls

33 lines (19 loc) · 960 Bytes

azure-arm

Azure ARM for Storage Account and Virutal Machine

Motivation

Let's say we have an infrastructure in place. There may be a time that we need to replicate the same infrastructure again. Doing it manually will surely give us an error in the migration stages. So, we will be utilizing a service from Azure called Azure ARM Templates to deploy our infrastructure in an idempotent way.

Architecture

architecture

Tools:

  1. Azure Account
  2. Azure Virtual Machines
  3. Azure VNet
  4. Azure Templates
  5. Azure Storage Account

Replication Steps

git clone [email protected]:codexponent/azure-arm-infrastructure.git
az create group --name prem-vm --location eastus
az deployment group create --resource-group prem-rg --template-file template.json

For the rest of the explanation and demonstration I have it on my medium blog.