Skip to content

Commit fa80ac4

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#108288
In Line 87, Updated "$myCustomIpPrefix" to "$myCustomIPv6GlobalPrefix" In Line 101, Updated "$myCustomIpPrefix" to "$myCustomIPv6RegionalPrefix" resolves MicrosoftDocs/azure-docs#108288
1 parent cbaedf5 commit fa80ac4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/virtual-network/ip-services/create-custom-ip-address-prefix-ipv6-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $prefix =@{
8484
AuthorizationMessage = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx|2a05:f500:2::/48|yyyymmdd'
8585
SignedMessage = $byoipauthsigned
8686
}
87-
$myCustomIpPrefix = New-AzCustomIPPrefix @prefix
87+
$myCustomIPv6GlobalPrefix = New-AzCustomIPPrefix @prefix
8888
```
8989

9090
### Provision a regional custom IPv6 address prefix
@@ -98,7 +98,7 @@ $prefix =@{
9898
Location = 'EastUS2'
9999
CIDR = '2a05:f500:2:1::/64'
100100
}
101-
$myCustomIpPrefix = New-AzCustomIPPrefix @prefix -Zone 1,2,3
101+
$myCustomIPv6RegionalPrefix = New-AzCustomIPPrefix @prefix -Zone 1,2,3
102102
```
103103
Similar to IPv4 custom IP prefixes, after the regional custom IP prefix is in a **Provisioned** state, public IP prefixes can be derived from the regional custom IP prefix. These public IP prefixes and any public IP addresses derived from them can be attached to networking resources, though they are not yet being advertised.
104104

0 commit comments

Comments
 (0)