Skip to content

Commit 2f61921

Browse files
committed
fixes
1 parent e905d44 commit 2f61921

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/nat-gateway/quickstart-create-nat-gateway-terraform.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Quickstart: Create an Azure NAT Gateway using Terraform'
33
titleSuffix: Azure NAT Gateway
4-
description: 'In this article, you create an Azure Virtual Machine with a NAT Gateway using Terraform'
4+
description: 'In this article, you create an Azure Virtual Machine with a NAT Gateway using Terraform.'
55
ms.topic: quickstart
66
ms.date: 02/21/2024
77
ms.custom: devx-track-terraform
@@ -12,9 +12,9 @@ content_well_notification:
1212
- AI-contribution
1313
---
1414

15-
# Quickstart: Create a Azure NAT Gateway using Terraform
15+
# Quickstart: Create an Azure NAT Gateway using Terraform
1616

17-
This article shows how to use Terraform to create a resource group, a virtual network with a subnet, a public IP address, a NAT gateway, a network security group with a rule, a network interface, a storage account, and a Linux virtual machine in Azure.
17+
Get started with Azure NAT Gateway using Terraform. This Terraform file deploys a virtual network, a NAT gateway resource, and Ubuntu virtual machine. The Ubuntu virtual machine is deployed to a subnet that is associated with the NAT gateway resource.
1818

1919
The script also generates a random SSH public key and associates it with the virtual machine for secure access. The public key is outputted at the end of the script execution.
2020

@@ -30,7 +30,7 @@ As with the public key, the names of the created resource group, virtual network
3030

3131
- An Azure account with an active subscription. You can [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
3232

33-
- [Install and configure Terraform](/azure/developer/terraform/quickstart-configure)
33+
- [Install and configure Terraform](/azure/developer/terraform/quickstart-configure).
3434

3535
## Implement the Terraform code
3636

@@ -112,7 +112,7 @@ $resource_group_name=$(terraform output -raw resource_group_name)
112112
$nat_gateway=$(terraform output -raw nat_gateway)
113113
```
114114

115-
1. Run [Get-AzNatGateway](/powershell/module/az.network/get-aznatgateway) to display the the details about the NAT gateway.
115+
1. Run [Get-AzNatGateway](/powershell/module/az.network/get-aznatgateway) to display the details about the NAT gateway.
116116

117117
```azurepowershell
118118
$nat = @{
@@ -130,7 +130,7 @@ Get-AzNatGateway @nat
130130

131131
## Troubleshoot Terraform on Azure
132132

133-
[Troubleshoot common problems when using Terraform on Azure](/azure/developer/terraform/troubleshoot)
133+
[Troubleshoot common problems when using Terraform on Azure.](/azure/developer/terraform/troubleshoot)
134134

135135
## Next steps
136136

0 commit comments

Comments
 (0)