Deploy a Virtual Network in Azure Using ARM Templates
Introduction Azure Resource Manager (ARM) templates allow you to define your infrastructure as code. In this guide, we will modify an existing ARM template to deploy a Virtual Network (VNet) in Azure and then deploy it using the Azure CLI. Task Overview We have an ARM template that defines a Virtual Network. Our goal is to: Change the VNet name to arm-vnet-test. Update the address prefix to 192.168.0.0/16. Add a tag named Environment with the value Azure-Learning. Updated ARM Template Below is the modified ARM template: ...