Skip to content

Commit 7e29b9e

Browse files
author
gitName
committed
inj only
1 parent 8e4fc9a commit 7e29b9e

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

articles/api-management/integrate-vnet-outbound.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ The subnet needs to be delegated to the **Microsoft.Web/serverFarms** service.
6363

6464
For more information about configuring subnet delegation, see [Add or remove a subnet delegation](../virtual-network/manage-subnet-delegation.md).
6565

66-
[!INCLUDE [api-management-virtual-network-address-prefix](../../includes/api-management-virtual-network-address-prefix.md)]
67-
68-
6966
### Permissions
7067

7168
You must have at least the following role-based access control permissions on the subnet or at a higher level to configure virtual network integration:

includes/api-management-virtual-network-address-prefix.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ ms.author: danlep
88

99
### addressPrefix property
1010

11-
To configure networking in the Premium v2 tier, the `addressPrefix` subnet property is required and must be set to a valid CIDR block.
11+
The `addressPrefix` subnet property must be set to a valid CIDR block.
1212

13-
If you configure the subnet using the Azure portal, the subnet sets an `addressPrefixes` (plural) property consisting of a list of address prefixes. However, the API Management service currently requires a single CIDR block as the value of the `addressPrefix` property.
13+
If you configure the subnet using the Azure portal, the subnet sets an `addressPrefixes` (plural) property consisting of a list of address prefixes. However, API Management requires a single CIDR block as the value of the `addressPrefix` property.
1414

15-
To create or update a subnet with the `addressPrefix` property, use a tool such as Azure PowerShell, an Azure Resource Manager template, or the [REST API](/rest/api/virtualnetwork/subnets/create-or-update). For example, update a subnet using the [Set-AzVirtualNetworkSubnetConfig](/powershell/module/az.network/set-azvirtualnetworksubnetconfig) Azure PowerShell cmdlet:
15+
To create or update a subnet with `addressPrefix`, use a tool such as Azure PowerShell, an Azure Resource Manager template, or the [REST API](/rest/api/virtualnetwork/subnets/create-or-update). For example, update a subnet using the [Set-AzVirtualNetworkSubnetConfig](/powershell/module/az.network/set-azvirtualnetworksubnetconfig) Azure PowerShell cmdlet:
1616

1717
```powershell
1818
$virtualNetwork = "MyVirtualNetwork"
19-
$subnetName = "apimSubnet"
19+
$subnetName = "ApimSubnet"
2020
$addressPrefix = "10.0.3.0/24"
2121
2222
Set-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix $addressPrefix

0 commit comments

Comments
 (0)