Skip to content

Commit 5156d04

Browse files
Merge pull request #114639 from davidsmatlak/ds-fixfwqs
Updates firewall quickstart articles
2 parents 41800bd + f5d0bda commit 5156d04

File tree

4 files changed

+27
-28
lines changed

4 files changed

+27
-28
lines changed

articles/firewall/deploy-template.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ services: firewall
55
author: vhorne
66
ms.service: firewall
77
ms.topic: quickstart
8+
ms.custom: subject-armqs
89
ms.date: 04/30/2020
910
ms.author: victorh
1011
---
@@ -13,14 +14,14 @@ ms.author: victorh
1314

1415
In this quickstart, you use a Resource Manager template to deploy an Azure Firewall in three Availability Zones.
1516

17+
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
18+
1619
The template creates a test network environment with a firewall. The network has one virtual network (VNet) with three subnets: *AzureFirewallSubnet*, *ServersSubnet*, and *JumpboxSubnet*. The *ServersSubnet* and *JumpboxSubnet* subnet each have a single, two-core Windows Server virtual machine.
1720

1821
The firewall is in the *AzureFirewallSubnet* subnet, and has an application rule collection with a single rule that allows access to `www.microsoft.com`.
1922

2023
A user-defined route points network traffic from the *ServersSubnet* subnet through the firewall, where the firewall rules are applied.
2124

22-
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
23-
2425
For more information about Azure Firewall, see [Deploy and configure Azure Firewall using the Azure portal](tutorial-firewall-deploy-portal.md).
2526

2627
## Prerequisites
@@ -33,20 +34,20 @@ This template creates an Azure Firewall with Availability Zones, along with the
3334

3435
### Review the template
3536

36-
The template used in this quickstart is from [Azure Quickstart templates](https://github.com/Azure/azure-quickstart-templates/blob/master/101-azurefirewall-with-zones-sandbox/azuredeploy.json).
37+
The template used in this quickstart is from [Azure Quickstart templates](https://azure.microsoft.com/resources/templates/101-azurefirewall-with-zones-sandbox).
3738

3839
:::code language="json" source="~/quickstart-templates/101-azurefirewall-with-zones-sandbox/azuredeploy.json" range="001-444" highlight="369-442":::
3940

4041
Multiple Azure resources are defined in the template:
4142

42-
- [**Microsoft.Network/publicIPAddresses**](/azure/templates/microsoft.network/publicipaddresses)
43+
- [**Microsoft.Storage/storageAccounts**](/azure/templates/microsoft.storage/storageAccounts)
44+
- [**Microsoft.Network/routeTables**](/azure/templates/microsoft.network/routeTables)
4345
- [**Microsoft.Network/networkSecurityGroups**](/azure/templates/microsoft.network/networksecuritygroups)
4446
- [**Microsoft.Network/virtualNetworks**](/azure/templates/microsoft.network/virtualnetworks)
45-
- [**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualmachines)
47+
- [**Microsoft.Network/publicIPAddresses**](/azure/templates/microsoft.network/publicipaddresses)
4648
- [**Microsoft.Network/networkInterfaces**](/azure/templates/microsoft.network/networkinterfaces)
47-
- [**Microsoft.Storage/storageAccounts**](/azure/templates/microsoft.storage/storageAccounts)
49+
- [**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualmachines)
4850
- [**Microsoft.Network/azureFirewalls**](/azure/templates/microsoft.network/azureFirewalls)
49-
- [**Microsoft.Network/routeTables**](/azure/templates/microsoft.network/routeTables)
5051

5152
### Deploy the template
5253

@@ -77,10 +78,12 @@ When you no longer need them, you can remove the resource group, firewall, and a
7778
```azurepowershell-interactive
7879
Remove-AzResourceGroup -Name MyResourceGroup
7980
```
81+
8082
Don't remove the resource group and firewall if you plan to continue on to the firewall monitoring tutorial.
8183

8284
## Next steps
8385

84-
Next, you can monitor the Azure Firewall logs:
86+
Next, you can monitor the Azure Firewall logs.
8587

86-
[Tutorial: Monitor Azure Firewall logs](./tutorial-diagnostics.md)
88+
> [!div class="nextstepaction"]
89+
> [Tutorial: Monitor Azure Firewall logs](tutorial-diagnostics.md)

articles/firewall/quick-create-ipgroup-template.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ services: firewall
55
author: vhorne
66
ms.service: firewall
77
ms.topic: quickstart
8+
ms.custom: subject-armqs
89
ms.date: 04/06/2020
910
ms.author: victorh
1011
---
1112

1213
# Quickstart: Create an Azure Firewall and IP Groups - Resource Manager template
1314

14-
In this quickstart, you use a Resource Manager template to deploy an Azure Firewall with sample IP Groups used in a network rule and application rule.
15-
16-
An IP Group is a top-level resource that allows you to define and group IP addresses, ranges, and subnets into a single object. This is useful for managing IP addresses in Azure Firewall rules. You can either manually enter IP addresses or import them from a file.
15+
In this quickstart, you use a Resource Manager template to deploy an Azure Firewall with sample IP Groups used in a network rule and application rule. An IP Group is a top-level resource that allows you to define and group IP addresses, ranges, and subnets into a single object. This is useful for managing IP addresses in Azure Firewall rules. You can either manually enter IP addresses or import them from a file.
1716

1817
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
1918

@@ -27,22 +26,21 @@ This template creates an Azure Firewall and IP Groups, along with the necessary
2726

2827
### Review the template
2928

30-
The template used in this quickstart is from [Azure Quickstart templates](https://github.com/Azure/azure-quickstart-templates/blob/master/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.json)
29+
The template used in this quickstart is from [Azure Quickstart templates](https://azure.microsoft.com/resources/templates/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox).
3130

3231
:::code language="json" source="~/quickstart-templates/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.json" range="001-512" highlight="118-141":::
3332

3433
Multiple Azure resources are defined in the template:
3534

3635
- [**Microsoft.Network/ipGroups**](/azure/templates/microsoft.network/ipGroups)
37-
- [**Microsoft.Network/publicIPAddresses**](/azure/templates/microsoft.network/publicipaddresses)
36+
- [**Microsoft.Storage/storageAccounts**](/azure/templates/microsoft.storage/storageAccounts)
37+
- [**Microsoft.Network/routeTables**](/azure/templates/microsoft.network/routeTables)
3838
- [**Microsoft.Network/networkSecurityGroups**](/azure/templates/microsoft.network/networksecuritygroups)
3939
- [**Microsoft.Network/virtualNetworks**](/azure/templates/microsoft.network/virtualnetworks)
40-
- [**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualmachines)
40+
- [**Microsoft.Network/publicIPAddresses**](/azure/templates/microsoft.network/publicipaddresses)
4141
- [**Microsoft.Network/networkInterfaces**](/azure/templates/microsoft.network/networkinterfaces)
42-
- [**Microsoft.Storage/storageAccounts**](/azure/templates/microsoft.storage/storageAccounts)
42+
- [**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualmachines)
4343
- [**Microsoft.Network/azureFirewalls**](/azure/templates/microsoft.network/azureFirewalls)
44-
- [**Microsoft.Network/routeTables**](/azure/templates/microsoft.network/routeTables)
45-
4644

4745
### Deploy the template
4846

articles/firewall/quick-create-multiple-ip-template.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ services: firewall
55
author: vhorne
66
ms.service: firewall
77
ms.topic: quickstart
8+
ms.custom: subject-armqs
89
ms.date: 04/14/2020
910
ms.author: victorh
1011
---
1112

1213
# Quickstart: Create an Azure Firewall with multiple public IP addresses - Resource Manager template
1314

14-
In this quickstart, you use a Resource Manager template to deploy an Azure Firewall with multiple public IP addresses.
15-
16-
The deployed firewall has NAT rule collection rules that allow RDP connections to two Windows Server 2019 virtual machines.
15+
In this quickstart, you use a Resource Manager template to deploy an Azure Firewall with multiple public IP addresses. The deployed firewall has NAT rule collection rules that allow RDP connections to two Windows Server 2019 virtual machines.
1716

1817
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
1918

@@ -29,22 +28,21 @@ This template creates an Azure Firewall with two public IP addresses, along with
2928

3029
### Review the template
3130

32-
The template used in this quickstart is from [Azure Quickstart templates](https://github.com/Azure/azure-quickstart-templates/blob/master/fw-docs-qs/azuredeploy.json)
31+
The template used in this quickstart is from [Azure Quickstart templates](https://azure.microsoft.com/resources/templates/fw-docs-qs).
3332

3433
:::code language="json" source="~/quickstart-templates/fw-docs-qs/azuredeploy.json" range="001-391" highlight="238-370":::
3534

3635
Multiple Azure resources are defined in the template:
3736

38-
- [**Microsoft.Network/publicIPAddresses**](/azure/templates/microsoft.network/publicipaddresses)
3937
- [**Microsoft.Network/networkSecurityGroups**](/azure/templates/microsoft.network/networksecuritygroups)
38+
- [**Microsoft.Network/publicIPAddresses**](/azure/templates/microsoft.network/publicipaddresses)
4039
- [**Microsoft.Network/virtualNetworks**](/azure/templates/microsoft.network/virtualnetworks)
4140
- [**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualmachines)
42-
- [**Microsoft.Network/networkInterfaces**](/azure/templates/microsoft.network/networkinterfaces)
4341
- [**Microsoft.Storage/storageAccounts**](/azure/templates/microsoft.storage/storageAccounts)
42+
- [**Microsoft.Network/networkInterfaces**](/azure/templates/microsoft.network/networkinterfaces)
4443
- [**Microsoft.Network/azureFirewalls**](/azure/templates/microsoft.network/azureFirewalls)
4544
- [**Microsoft.Network/routeTables**](/azure/templates/microsoft.network/routeTables)
4645

47-
4846
### Deploy the template
4947

5048
Deploy Resource Manager template to Azure:

articles/firewall/toc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
- name: Quickstarts
1818
expanded: true
1919
items:
20-
- name: Deploy with IP Groups
20+
- name: Deploy with IP Groups - ARM template
2121
displayName: Resource Manager
2222
href: quick-create-ipgroup-template.md
23-
- name: Deploy with multiple addresses
23+
- name: Deploy with multiple addresses - ARM template
2424
displayName: Resource Manager
2525
href: quick-create-multiple-ip-template.md
26-
- name: Deploy with Availability Zones
26+
- name: Deploy with Availability Zones - ARM template
2727
displayName: Resource Manager
2828
href: deploy-template.md
2929
- name: Samples

0 commit comments

Comments
 (0)