We have a hub and spoke design in Azure for our vNets and needed to peer the vNets together. This can be done in an ARM template and we could have deployed all three networks in one go and peered them as part of the ARM template deployment. For various reasons that approach didn't really … Continue reading vNet Peering PowerShell
Month: July 2018
Playing with Azure Firewall
What is Azure Firewall - A fully stateful firewall as a service. Before you can deploy Azure Firewall you need to register the provider in your subscription : https://docs.microsoft.com/en-us/azure/firewall/public-preview Register-AzureRmProviderFeature -FeatureName AllowRegionalGatewayManagerForSecureGateway -ProviderNamespace Microsoft.Network Register-AzureRmProviderFeature -FeatureName AllowAzureFirewall -ProviderNamespace Microsoft.Network It can take up to 30 minutes for the feature registration to complete The easy way … Continue reading Playing with Azure Firewall
VM Deployment with ARM Template
Deploying VMs with an ARM template.