For the single-region integration method, we need to have at least two VNets in the same region. To make things simpler, we deploy them to a single resource group. The creation of all of the required resources can be done via the following commands from the Azure CLI:
$ az group create -l "West Europe" -n "azureadministratorvnets-euw-rg"
$ az network vnet create -g "azureadministratorvnets-euw-rg" --name "vnet1" --address-prefixes "10.0.0.0/24"
$ az network vnet create -g "azureadministratorvnets-euw-rg" --name "vnet2" --address-prefixes "10.1.0.0/24"
It is important to make sure that the IP ranges do not overlap, as this will prevent you from continuing with this section. In the preceding code block, I used two different commands:
- az group create: This will create a resource group in a particular region.
- az network vnet: This command will create a VNet with the desired parameters.
Once...