Skip to content

Commit e183810

Browse files
Refine UDR doc
1 parent 72171f6 commit e183810

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ The following illustration shows an example of an Azure Spring Apps VNet instanc
3333

3434
:::image type="content" source="media/how-to-create-user-defined-route-instance/user-defined-route-example-architecture.png" lightbox="media/how-to-create-user-defined-route-instance/user-defined-route-example-architecture.png" alt-text="Architecture diagram showing user-defined routing.":::
3535

36+
* Public Ingress is forced to flow through firewall filters
37+
* ASA instance is isolated dedicated subnets.
38+
* The firewall is owned and managed by customers. Please ensure it builds a healthy envrioment for all functions you need.
39+
3640
### Set configuration using environment variables
3741

3842
The following example shows how to define a set of environment variables to be used in resource creation.
@@ -274,6 +278,28 @@ az role assignment create \
274278
--role "Owner" \
275279
--scope ${VIRTUAL_NETWORK_RESOURCE_ID} \
276280
--assignee e8de9221-a19c-4c81-b814-fd37c6caf9d2
281+
282+
APP_ROUTE_TABLE_RESOURCE_ID=$(az network route-table show \
283+
--name $APP_ROUTE_TABLE_NAME \
284+
--resource-group $RG \
285+
--query "id" \
286+
--output tsv)
287+
288+
az role assignment create \
289+
--role "Owner" \
290+
--scope ${APP_ROUTE_TABLE_RESOURCE_ID} \
291+
--assignee e8de9221-a19c-4c81-b814-fd37c6caf9d2
292+
293+
SERVICE_RUNTIME_ROUTE_TABLE_RESOURCE_ID=$(az network route-table show \
294+
--name $SERVICE_RUNTIME_ROUTE_TABLE_NAME \
295+
--resource-group $RG \
296+
--query "id" \
297+
--output tsv)
298+
299+
az role assignment create \
300+
--role "Owner" \
301+
--scope ${SERVICE_RUNTIME_ROUTE_TABLE_RESOURCE_ID} \
302+
--assignee e8de9221-a19c-4c81-b814-fd37c6caf9d2
277303
```
278304

279305
### Create a UDR Azure Spring Apps instance

0 commit comments

Comments
 (0)