Skip to content

Commit b89a344

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#106102
In Line 160, updated the Bastion Subnet Address range from /27 to /26, as currently this is what is supported. resolves MicrosoftDocs/azure-docs#106102
1 parent b5fe50a commit b89a344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/load-balancer/basic/quickstart-basic-public-load-balancer-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ $subnetConfig = New-AzVirtualNetworkSubnetConfig @subnet
157157
## Create Azure Bastion subnet. ##
158158
$bastsubnet = @{
159159
Name = 'AzureBastionSubnet'
160-
AddressPrefix = '10.1.1.0/27'
160+
AddressPrefix = '10.1.1.0/26'
161161
}
162162
$bastsubnetConfig = New-AzVirtualNetworkSubnetConfig @bastsubnet
163163

0 commit comments

Comments
 (0)