Hands-on exercise – provision resources for chapter exercises
To follow along with the exercises in this chapter, we will provision some Azure resources to work with. We 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 5.16.
Figure 5.16 – Resources deployed via the provided ARM template
The first VNet (CoreServicesVNet) will have two subnets with a virtual machine in the data subnet. The second VNet (onprem-network) will be used to simulate an on-premises network. It has four subnets and a virtual machine (OnPremVM) that will be used to simulate an on-premises VM. A VM called Remote PC will also be deployed to simulate a remote user’s PC. Here is the task that we will complete in this exercise:
- Task 1: Initialize template deployment in GitHub, complete parameters, and deploy the template to...