Skip to content

Commit 5256861

Browse files
authored
Update how-to-create-user-defined-route-instance.md
1 parent d9ab325 commit 5256861

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/spring-apps/how-to-create-user-defined-route-instance.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: devx-track-java, devx-track-azurecli
1515

1616
**This article applies to:** ✔️ Basic/Standard tier ✔️ Enterprise tier
1717

18-
This article describes how to secure outbound traffic from your applications hosted in Azure Spring Apps. The article provides an example of a user-defined route (UDR). A UDR is an advanced feature that lets you fully control egress traffic. You can use a UDR in scenarios such as disallowing an Azure Spring Apps autogenerated public IP address.
18+
This article describes how to secure outbound traffic from your applications hosted in Azure Spring Apps. The article provides an example of a user-defined route. A user-defined route is an advanced feature that lets you fully control egress traffic. You can use a user-defined route in scenarios such as disallowing an Azure Spring Apps autogenerated public IP address.
1919

2020
## Prerequisites
2121

@@ -98,7 +98,7 @@ az network vnet subnet create \
9898
--address-prefix 10.42.3.0/24
9999
```
100100

101-
### Set up an Azure Firewall instance with a UDR
101+
### Set up an Azure Firewall instance with a user-defined route
102102

103103
Use the following command to create and set up an Azure Firewall instance with a user-defined route, and to configure Azure Firewall outbound rules. The firewall lets you configure granular egress traffic rules from Azure Spring Apps.
104104

@@ -160,14 +160,14 @@ FWPRIVATE_IP=$(az network firewall show \
160160
--output tsv | tr -d '[:space:]')
161161
```
162162

163-
### Create a UDR with a hop to Azure Firewall
163+
### Create a user-defined route with a hop to Azure Firewall
164164

165165
Azure automatically routes traffic between Azure subnets, virtual networks, and on-premises networks. If you want to change the default routing in Azure, create a route table.
166166

167167
The following example shows how to create a route table to be associated with a specified subnet. The route table defines the next hop, as in the Azure Firewall instance that you created. Each subnet can have one route table associated with it, or it might have no associated route table.
168168

169169
```azurecli
170-
# Create a UDR and add a route for Azure Firewall.
170+
# Create a user-defined route and add a route for Azure Firewall.
171171
172172
az network route-table create \
173173
--resource-group $RG -l $LOC \
@@ -276,9 +276,9 @@ az role assignment create \
276276
--assignee e8de9221-a19c-4c81-b814-fd37c6caf9d2
277277
```
278278

279-
### Create a UDR for Azure Spring Apps
279+
### Create a user-defined route for Azure Spring Apps
280280

281-
The following example shows how to create a UDR for the Azure Spring Apps instance:
281+
The following example shows how to create a user-defined route for the Azure Spring Apps instance:
282282

283283
```azurecli
284284
az spring create \

0 commit comments

Comments
 (0)