Skip to content

Commit fafa5bf

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into linux-fixes-1
2 parents b2ef27f + 299a694 commit fafa5bf

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

articles/virtual-network/nat-gateway/quickstart-create-nat-gateway-bicep.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22
title: 'Create a NAT gateway - Bicep'
33
titleSuffix: Azure NAT Gateway
44
description: This quickstart shows how to create a NAT gateway using Bicep.
5-
services: nat-gateway
65
author: asudbring
76
ms.service: virtual-network
87
ms.subservice: nat
98
ms.topic: how-to
10-
ms.workload: infrastructure-services
11-
ms.date: 04/08/2022
9+
ms.date: 04/24/2023
1210
ms.author: allensu
1311
ms.custom: subject-armqs, devx-track-bicep
1412
# Customer intent: I want to create a NAT gateway using Bicep so that I can provide outbound connectivity for my virtual machines.
@@ -31,7 +29,9 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
3129
This Bicep file is configured to create a:
3230

3331
* Virtual network
32+
3433
* NAT gateway resource
34+
3535
* Ubuntu virtual machine
3636

3737
The Ubuntu VM is deployed to a subnet that's associated with the NAT gateway resource.
@@ -41,18 +41,27 @@ The Ubuntu VM is deployed to a subnet that's associated with the NAT gateway res
4141
Nine Azure resources are defined in the Bicep file:
4242

4343
* **[Microsoft.Network/networkSecurityGroups](/azure/templates/microsoft.network/networksecuritygroups)**: Creates a network security group.
44+
4445
* **[Microsoft.Network/networkSecurityGroups/securityRules](/azure/templates/microsoft.network/networksecuritygroups/securityrules)**: Creates a security rule.
46+
4547
* **[Microsoft.Network/publicIPAddresses](/azure/templates/microsoft.network/publicipaddresses)**: Creates a public IP address.
48+
4649
* **[Microsoft.Network/publicIPPrefixes](/azure/templates/microsoft.network/publicipprefixes)**: Creates a public IP prefix.
50+
4751
* **[Microsoft.Compute/virtualMachines](/azure/templates/Microsoft.Compute/virtualMachines)**: Creates a virtual machine.
52+
4853
* **[Microsoft.Network/virtualNetworks](/azure/templates/microsoft.network/virtualnetworks)**: Creates a virtual network.
54+
4955
* **[Microsoft.Network/natGateways](/azure/templates/microsoft.network/natgateways)**: Creates a NAT gateway resource.
56+
5057
* **[Microsoft.Network/virtualNetworks/subnets](/azure/templates/microsoft.network/virtualnetworks/subnets)**: Creates a virtual network subnet.
58+
5159
* **[Microsoft.Network/networkinterfaces](/azure/templates/microsoft.network/networkinterfaces)**: Creates a network interface.
5260

5361
## Deploy the Bicep file
5462

5563
1. Save the Bicep file as **main.bicep** to your local computer.
64+
5665
1. Deploy the Bicep file using either Azure CLI or Azure PowerShell.
5766

5867
# [CLI](#tab/CLI)
@@ -117,13 +126,17 @@ Remove-AzResourceGroup -Name exampleRG
117126
In this quickstart, you created a:
118127

119128
* NAT gateway resource
129+
120130
* Virtual network
131+
121132
* Ubuntu virtual machine
122133

123134
The virtual machine is deployed to a virtual network subnet associated with the NAT gateway.
124135

125-
To learn more about Azure NAT Gateway and Bicep, continue to the articles below.
136+
To learn more about Azure NAT Gateway and Bicep, continue to the following articles.
126137

127138
* Read an [Overview of Azure NAT Gateway](nat-overview.md)
139+
128140
* Read about the [NAT Gateway resource](nat-gateway-resource.md)
141+
129142
* Learn more about [Bicep](../../azure-resource-manager/bicep/overview.md)

0 commit comments

Comments
 (0)