Skip to content

Commit bf7a3d6

Browse files
committed
updated based on feedback
linked to the limits documentation in the configure article
1 parent e9be7e9 commit bf7a3d6

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

articles/private-link/availability.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ The following tables list the Private Link services and the regions where they'r
3434
| Azure AI services | All public regions<br/>All Government regions | | GA <br/> [Use private endpoints.](/azure/ai-services/cognitive-services-virtual-networks#use-private-endpoints) |
3535
| Azure AI Video Indexer | All public regions | | GA <br/> [Use private endpoints with Azure AI Video Indexer.](/azure/azure-video-indexer/private-endpoint-overview) |
3636

37-
38-
3937
### Analytics
4038

4139
|Supported services |Available regions | Other considerations | Status |

articles/private-link/configure-private-link-service-direct-connect.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Private Link service (PLS) Direct Connect allows you to:
5555

5656
- **Provide a minimum of 2 IP configurations**: For this feature, at least 2 IP configurations in multiples of 2 are required for high availability.
5757
- **Specify a static destination IP address**: The target IP must be reachable within your virtual network.
58-
- **Disable the privateLinkserviceNetworkPolicies property** on the subnet: This property is not needed for this feature.
58+
- **Disable the privateLinkServiceNetworkPolicies property** on the subnet: This property is not needed for this feature.
5959

6060
## Limitations
6161

6262
Note these limitations when using Private Link service Direct Connect:
6363

64-
- **Minimum 2 IP configurations required**: At least 2 IP addresses, or multiples of 2 (up to 8) are required to deploy a PLS Direct Connect.
64+
- **Minimum 2 IP configurations required**: At least 2 IP configurations, or multiples of 2 ([limit](/azure/azure-resource-manager/management/azure-subscription-service-limits) of 8 max) are required to deploy a PLS Direct Connect.
6565
- **Maximum of 10 PLS per subscription**: There is a hardware limitation of 10 PLS per region per subscription.
6666
- **Bandwidth limitation**: Each PLS Direct Connect can support a bandwidth of up to 10 Gbps.
6767
- **Static IP requirement**: The destination IP must be private, static, and directly reachable, dynamically changing IPs are not supported.
@@ -93,7 +93,7 @@ $destinationIP = "10.0.1.100"
9393
New-AzResourceGroup -Name $resourceGroupName -Location $location
9494
9595
# Create virtual network (corrected parameter name)
96-
$subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix "10.0.1.0/24" -PrivateLinkserviceNetworkPoliciesFlag "Disabled"
96+
$subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix "10.0.1.0/24" -privateLinkServiceNetworkPoliciesFlag "Disabled"
9797
$vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $resourceGroupName -Location $location -AddressPrefix "10.0.0.0/16" -Subnet $subnet
9898
9999
# Get subnet reference
@@ -504,9 +504,9 @@ The feature flag isn't visible on portal. How do I register for the feature?
504504

505505
- Register the feature flag Microsoft.Network/AllowPrivateLinkserviceUDR via Azure CLI or PowerShell, see this for how-to: [Set up preview features in Azure subscription - Azure Resource Manager | Microsoft Learn](/azure/azure-resource-manager/management/preview-features).
506506

507-
Does the property privateLinkserviceNetworkPolicies ever need to be set to True, such as by GA?
507+
Does the property privateLinkServiceNetworkPolicies ever need to be set to True, such as by GA?
508508

509-
- The property privateLinkserviceNetworkPolicies is not needed for this feature, so set it to false.
509+
- The property privateLinkServiceNetworkPolicies is not needed for this feature, so set it to false.
510510

511511
## Next steps
512512

0 commit comments

Comments
 (0)