Skip to content

Commit 8f0de46

Browse files
committed
powershell qs verify
1 parent 6e56651 commit 8f0de46

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: mbender
77
ms.service: azure-virtual-network
88
ms.subservice: ip-services
99
ms.topic: quickstart
10-
ms.date: 08/24/2023
10+
ms.date: 01/08/2025
1111
ms.custom: mode-api, devx-track-azurepowershell
1212
---
1313

@@ -42,9 +42,9 @@ New-AzResourceGroup @rg
4242
# [**Standard SKU**](#tab/create-public-ip-standard)
4343

4444
>[!NOTE]
45-
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
45+
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
4646
>
47-
>The following command works for Az.Network module version 4.5.0 or later. For more information about the PowerShell modules currently being used, please refer to the [PowerShellGet documentation](/powershell/module/powershellget/).
47+
>The following command works for `Az.Network` module version 4.5.0 or later. For more information about the PowerShell modules currently being used, see the [PowerShellGet documentation](/powershell/module/powershellget/).
4848
4949
In this section, you create a public IP with zones. Public IP addresses can be zone-redundant or zonal.
5050

@@ -65,17 +65,17 @@ $ip = @{
6565
New-AzPublicIpAddress @ip
6666
```
6767
> [!IMPORTANT]
68-
> For Az.Network modules older than 4.5.0, run the command above without specifying a zone parameter to create a zone-redundant IP address.
68+
> For `Az.Network` modules older than 4.5.0, run the command above without specifying a zone parameter to create a zone-redundant IP address.
6969
>
7070
7171
# [**Basic SKU**](#tab/create-public-ip-basic)
7272

7373
>[!NOTE]
74-
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
74+
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
7575
7676
In this section, you create a basic IP. Basic public IPs don't support availability zones.
7777

78-
Use [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) to create a basic static public IPv4 address named **myBasicPublicIP** in **QuickStartCreateIP-rg**.
78+
Use [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) to create a basic static public IPv4 address named **myBasicPublicIP** in **QuickStartCreateIP-rg**.
7979

8080
To create an IPv6 address, modify the **`--IpAddressVersion`** parameter to **IPv6**.
8181

@@ -93,7 +93,7 @@ New-AzPublicIpAddress @ip
9393
If it's acceptable for the IP address to change over time, **Dynamic** IP assignment can be selected by changing the **`-AllocationMethod`** to **Dynamic**.
9494

9595
>[!NOTE]
96-
> A basic IPv6 address must always be 'Dynamic'.
96+
> A basic IPv6 address must always be `Dynamic`.
9797
9898
---
9999

@@ -124,10 +124,10 @@ New-AzPublicIpAddress @ip
124124
125125
# [**Non-zonal**](#tab/create-public-ip-non-zonal)
126126

127-
In this section, you create a non-zonal IP address.
127+
In this section, you create a non-zonal IP address.
128128

129129
>[!NOTE]
130-
>The following command works for Az.Network module version 4.5.0 or later. For more information about the PowerShell modules currently being used, please refer to the [PowerShellGet documentation](/powershell/module/powershellget/).
130+
>The following command works for `Az.Network` module version 4.5.0 or later. For more information about the PowerShell modules currently being used, see the [PowerShellGet documentation](/powershell/module/powershellget/).
131131
132132
Use [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) to create a standard public IPv4 address as a non-zonal resource named **myStandardPublicIP-nozone** in **QuickStartCreateIP-rg**.
133133

@@ -144,7 +144,7 @@ $ip = @{
144144
}
145145
New-AzPublicIpAddress @ip
146146
```
147-
The removal of the **`-Zone`** parameter in the command is valid in all regions.
147+
The removal of the **`-Zone`** parameter in the command is valid in all regions.
148148

149149
The removal of the **`-Zone`** parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
150150

@@ -156,9 +156,9 @@ Standard SKU static public IPv4 addresses support Routing Preference or the Glob
156156

157157
# [**Routing Preference**](#tab/routing-preference)
158158

159-
By default, the routing preference for public IP addresses is set to **Microsoft network**, which delivers traffic over Microsoft's global wide area network to the user.
159+
By default, the routing preference for public IP addresses is set to **Microsoft network**, which delivers traffic over Microsoft's global wide area network to the user.
160160

161-
The selection of **Internet** minimizes travel on Microsoft's network, instead using the transit ISP network to deliver traffic at a cost-optimized rate.
161+
The selection of **Internet** minimizes travel on Microsoft's network, instead using the transit ISP network to deliver traffic at a cost-optimized rate.
162162

163163
For more information on routing preference, see [What is routing preference (preview)?](routing-preference-overview.md).
164164

@@ -188,7 +188,7 @@ New-AzPublicIpAddress @ip
188188

189189
# [**Tier**](#tab/tier)
190190

191-
Public IP addresses are associated with a single region. The **Global** tier spans an IP address across multiple regions. **Global** tier is required for the frontends of cross-region load balancers.
191+
Public IP addresses are associated with a single region. The **Global** tier spans an IP address across multiple regions. **Global** tier is required for the frontends of cross-region load balancers.
192192

193193
For more information, see [Cross-region load balancer](../../load-balancer/cross-region-overview.md).
194194

0 commit comments

Comments
 (0)