You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
19
19
20
20
## Prerequisites
21
21
@@ -98,7 +98,7 @@ az network vnet subnet create \
98
98
--address-prefix 10.42.3.0/24
99
99
```
100
100
101
-
### Set up an Azure Firewall instance with a UDR
101
+
### Set up an Azure Firewall instance with a user-defined route
102
102
103
103
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.
104
104
@@ -160,14 +160,14 @@ FWPRIVATE_IP=$(az network firewall show \
160
160
--output tsv | tr -d '[:space:]')
161
161
```
162
162
163
-
### Create a UDR with a hop to Azure Firewall
163
+
### Create a user-defined route with a hop to Azure Firewall
164
164
165
165
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.
166
166
167
167
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.
168
168
169
169
```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.
171
171
172
172
az network route-table create \
173
173
--resource-group $RG -l $LOC \
@@ -276,9 +276,9 @@ az role assignment create \
276
276
--assignee e8de9221-a19c-4c81-b814-fd37c6caf9d2
277
277
```
278
278
279
-
### Create a UDR for Azure Spring Apps
279
+
### Create a user-defined route for Azure Spring Apps
280
280
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:
0 commit comments