Skip to content

Commit d760136

Browse files
authored
Fix broken links and formatting
1 parent 995968b commit d760136

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/connectors/enable-stateful-affinity-built-in-connectors.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ To run these connector operations in stateful mode, you must enable this capabil
3030
- An Azure virtual network with a subnet to integrate with your logic app. If you don't have these items, see the following documentation:
3131

3232
- [Quickstart: Create a virtual network with the Azure portal](/azure/virtual-network/quick-create-portal)
33-
- [Add, change, or delete a virtual network subnet](/azurevirtual-network/virtual-network-manage-subnet?tabs=azure-portal)
33+
- [Add, change, or delete a virtual network subnet](/azure/virtual-network/virtual-network-manage-subnet?tabs=azure-portal)
3434

3535
## Enable stateful mode in the Azure portal
3636

37-
If you use network security groups in your virtual network, stateful mode requires that you open [ports 20,000 to 30,000](../app-service/overview-vnet-integration.md#private-ports).
37+
If you use network security groups in your virtual network, stateful mode requires that you open [ports 20,000 to 30,000](/azure/app-service/overview-vnet-integration#private-ports).
3838

3939
1. In the [Azure portal](https://portal.azure.com), open the Standard logic app resource where you want to enable stateful mode for these connector operations.
4040

@@ -54,9 +54,9 @@ If you use network security groups in your virtual network, stateful mode requir
5454

5555
:::image type="content" source="media/enable-stateful-affinity-built-in-connectors/enable-virtual-network-integration.png" alt-text="Screenshot shows Azure portal, Standard logic app resource, Networking page with selected virtual network and subnet.":::
5656

57-
For general information about enabling virtual network integration with your app, see [Enable virtual network integration in Azure App Service](../app-service/configure-vnet-integration-enable.md).
57+
For general information about enabling virtual network integration with your app, see [Enable virtual network integration in Azure App Service](/azure/app-service/configure-vnet-integration-enable).
5858

59-
1. Next, update your logic app's underlying website configuration (**<*logic-app-name*>.azurewebsites.net**) by using either of the following tools:
59+
1. Next, update your logic app's underlying website configuration (**<logic-app-name>.azurewebsites.net**) by using either of the following tools:
6060

6161
## Update website configuration for logic app
6262

@@ -105,10 +105,10 @@ Updates a resource by using the specified resource ID:
105105
| Element | Value |
106106
|---------|--------|
107107
| HTTP request method | **PATCH** |
108-
| <*resource-ID*> | **`subscriptions/<Azure-subscription-ID>/resourcegroups/<resource-group>/providers/Microsoft.Web/sites/<website-name>/config/web`** |
109-
| <*Azure-subscription-ID*> | The ID for your Azure subscription |
110-
| <*resource-group*> | The resource group that contains your logic app resource, which is **My-Standard-RG** in this example |
111-
| <*website-name*> | The name for your logic app resource, which is **mystandardlogicapp** in this example |
108+
| **<resource-ID>** | **`subscriptions/<Azure-subscription-ID>/resourcegroups/<resource-group>/providers/Microsoft.Web/sites/<website-name>/config/web`** |
109+
| **<Azure-subscription-ID>** | The ID for your Azure subscription |
110+
| **<resource-group>** | The resource group that contains your logic app resource, which is **My-Standard-RG** in this example |
111+
| **<website-name>** | The name for your logic app resource, which is **mystandardlogicapp** in this example |
112112
| HTTP request body | **`{"properties": {"vnetPrivatePortsCount": "2"}}`** |
113113

114114
#### Example
@@ -138,10 +138,10 @@ For more information, see the following documentation:
138138

139139
| Element | Value |
140140
|---------|--------|
141-
| <*Azure-subscription-ID*> | The ID for your Azure subscription |
142-
| <*resource-ID*> | **`subscriptions/<Azure-subscription-ID>/resourcegroups/<resource-group>/providers/Microsoft.Web/sites/<website-name>/config/web`** |
143-
| <*resource-group*> | The resource group that contains your logic app resource, which is **My-Standard-RG** in this example |
144-
| <*website-name*> | The name for your logic app resource, which is **mystandardlogicapp** in this example |
141+
| **<Azure-subscription-ID>** | The ID for your Azure subscription |
142+
| **<resource-ID>** | **`subscriptions/<Azure-subscription-ID>/resourcegroups/<resource-group>/providers/Microsoft.Web/sites/<website-name>/config/web`** |
143+
| **<resource-group>** | The resource group that contains your logic app resource, which is **My-Standard-RG** in this example |
144+
| **<website-name>** | The name for your logic app resource, which is **mystandardlogicapp** in this example |
145145

146146
#### Example
147147

@@ -156,7 +156,7 @@ If you get an error that says **Reserved instance count is invalid**, use the fo
156156
```powershell
157157
$webConfig.Properties.preWarmedInstanceCount = $webConfig.Properties.reservedInstanceCount
158158
$webConfig.Properties.reservedInstanceCount = $null
159-
$webConfig | Set-AzResource -ResourceId {resourceId}
159+
$webConfig | Set-AzResource -ResourceId <resource-ID>
160160
```
161161

162162
Error example:

0 commit comments

Comments
 (0)