Azure ARM for Storage Account and Virutal Machine
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.
- Azure Account
- Azure Virtual Machines
- Azure VNet
- Azure Templates
- Azure Storage Account
git clone git@github.com: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.