A hands-on exercise – provisioning resources for the chapter’s exercises
To follow along with the exercises in this chapter, we will provision some Azure resources for our fictional organization, CharisTech. I have prepared an Azure ARM template in the GitHub repository of this book for this purpose. The template will deploy two peered virtual networks in two Azure regions, as shown in Figure 2.1.
Figure 2.1 – Resources deployed via the provided ARM template
The first VNet (CoreServicesVNet) will have three subnets, with a virtual machine in each subnet. The second VNet (EngineeringVNet) will have two subnets, with a virtual machine in one subnet. One of the virtual machines (WebVM) will be assigned a public IP address, so you can connect to it from your PC over the internet. Here are the tasks that we will complete in this exercise:
- Task 1: Initialize template deployment in GitHub
- Task 2: Complete parameters and deploy...