Skip to content

Commit 174a719

Browse files
committed
copy edit
1 parent c01c471 commit 174a719

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

articles/virtual-network/ip-services/create-public-ip-terraform.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,27 +56,27 @@ An Azure resource group is a logical container into which Azure resources are de
5656
:::code language="terraform" source="~/terraform_samples/quickstart/101-virtual-network-public-ip/main.tf" range="10-18":::
5757

5858
> [!IMPORTANT]
59-
> For versions of the API older than 2020-08-01, execute the command without specifying a `--zone` parameter to create a zone-redundant IP address.
59+
> For versions of the API older than 2020-08-01, omit the `zone` field to create a zone-redundant IP address.
6060
>
6161
6262
# [**Basic SKU**](#tab/create-public-ip-basic)
6363

6464
In this section, you create a basic IP. Basic public IPs don't support availability zones.
6565

66-
The followingcode snippet creates an IPv6 address, modify the `--version` parameter to **IPv6**.
66+
The following code snippet creates an IPv6 address. For an IPv6 address, set the `version` value to **IPv6**.
6767

6868
:::code language="terraform" source="~/terraform_samples/quickstart/101-virtual-network-public-ip/main.tf" range="20-27":::
6969

70-
If it's acceptable for the IP address to change over time, **Dynamic** IP assignment can be selected by changing the `allocation_method` value to **Dynamic**.
70+
If it's acceptable for the IP address to change over time, dynamic IP assignment can be selected by changing the `allocation_method` value to **Dynamic**.
7171

7272
>[!NOTE]
73-
> A basic IPv6 address must always be `Dynamic`.
73+
> A basic IPv6 address must always be dynamic.
7474
7575
---
7676

7777
## Create a zonal or no-zone IP address
7878

79-
In this section, you learn how to create a zonal or no-zone public IP address.
79+
In this section, you learn how to create a zonal and non-zone public IP addresses.
8080

8181
# [**Zonal**](#tab/create-public-ip-zonal)
8282

@@ -87,17 +87,15 @@ To create an IPv6 address, set the `version` value to **IPv6**.
8787
:::code language="terraform" source="~/terraform_samples/quickstart/101-virtual-network-public-ip/main.tf" range="29-37":::
8888

8989
>[!NOTE]
90-
>The above options for zones are only valid selections in regions with [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
90+
>For more information about availability zones, see [What are availability zones?](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
9191
9292
# [**Non-zonal**](#tab/create-public-ip-non-zonal)
9393

94-
In this section, you create a non-zonal IP address.
94+
The following code snippet creates a standard public IPv4 address as a non-zonal resource named **myNonZonalStandardPublicIP**.
9595

9696
>[!NOTE]
9797
>The following command works for API version 2020-08-01 or later. For more information about the API version currently being used, see [Resource Providers and Types](../../azure-resource-manager/management/resource-providers-and-types.md).
9898
99-
The following code snippet creates a standard public IPv4 address as a non-zonal resource named **myNonZonalStandardPublicIP**.
100-
10199
To create an IPv6 address, set the `version` value to **IPv6**.
102100

103101
:::code language="terraform" source="~/terraform_samples/quickstart/101-virtual-network-public-ip/main.tf" range="39-46":::

0 commit comments

Comments
 (0)