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
@@ -128,28 +127,28 @@ The following example shows how to assign the IP address you created to the fire
128
127
> Setting up the public IP address to the Azure Firewall may take a few minutes. To leverage FQDN on network rules, enable DNS proxy. When enabled, the firewall will listen on port 53 and forward DNS requests to the specified DNS server. The firewall can then translate the FQDN automatically.
Azure automatically routes traffic between Azure subnets, virtual networks, and on-premises networks. If you want to change any of Azure's default routing, you do so by creating a route table.
146
+
Azure automatically routes traffic between Azure subnets, virtual networks, and on-premises networks. If you want to change Azure's default routing, create a route table.
148
147
149
-
Create an empty route table to be associated with a given subnet. The route table will define the next hop as the Azure Firewall created above. Each subnet can have zero or one route table associated to it.
148
+
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 you created. Each subnet can one route table associated with it, or could have no associated route table.
150
149
151
150
```azurecli
152
-
# Create UDR and add a route for Azure Firewall
151
+
# Create UDR and add a route for Azure Firewall.
153
152
154
153
az network route-table create -g $RG -l $LOC --name $APP_ROUTE_TABLE_NAME
Add [necessary rules](vnet-customer-responsibilities.md) for ASA
161
+
The following example shows hot to add rules to your firewall. For more information, see [Customer responsibilities for running Azure Spring Apps in VNET](vnet-customer-responsibilities.md).
To associate the cluster with the firewall, the dedicated subnet for the cluster's subnet must reference the route table created above. App and service runtime subnets need to be associated with corresponding route tables.
177
+
To associate the cluster with the firewall, the dedicated subnet for the cluster's subnet must reference the route table you created. App and service runtime subnets must be associated with corresponding route tables. The following example shows how to associate a route table with a subnet.
179
178
180
179
```azurecli
181
-
# Associate route table with next hop to Firewall to the ASA subnet
180
+
# Associate route table with next hop to Firewall to the Azure Spring Apps subnet.
### Follow the following doc to add role for ASA RP
188
+
### Add a role for an Azure Spring Apps RP
189
+
190
+
The following example shows how to add a role for an Azure Spring Apps RP.
190
191
191
192
```azurecli
192
193
VIRTUAL_NETWORK_RESOURCE_ID=`az network vnet show \
@@ -201,15 +202,17 @@ az role assignment create \
201
202
--assignee e8de9221-a19c-4c81-b814-fd37c6caf9d2
202
203
```
203
204
204
-
### Create a UDR ASA instance
205
+
### Create a UDR Azure Spring Apps instance
206
+
207
+
The following example shows how to create a UDR Azure Spring Apps instance.
205
208
206
209
```azurecli
207
210
az spring create -n $ASA_NAME -g $RG --vnet $VNET_NAME --app-subnet $ASA_APP_SUBNET_NAME --service-runtime-subnet $ASA_SERVICE_RUNTIME_SUBNET_NAME --outbound-type userDefinedRouting
208
211
```
209
212
210
-
Now you can access the public IP of the firewall from the internet, and the firewall will route the traffic into the ASA subnets according to your routing rules.
213
+
You can now access the public IP of the firewall from the internet. The firewall will route traffic into Azure Spring Apps subnets according to your routing rules.
211
214
212
215
## Next steps
213
216
214
-
-[Troubleshooting Azure Spring Apps in VNET](troubleshooting-vnet.md)
215
-
-[Customer Responsibilities Azure Spring Apps in VNET](vnet-customer-responsibilities.md)
217
+
-[Troubleshooting Azure Spring Apps in virtual networks](troubleshooting-vnet.md)
218
+
-[Customer responsibilities for running Azure Spring Apps in VNET](vnet-customer-responsibilities.md)
0 commit comments