File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ The following illustration shows an example of an Azure Spring Apps VNet instanc
33
33
34
34
:::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.":::
35
35
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
+
36
40
### Set configuration using environment variables
37
41
38
42
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 \
274
278
--role "Owner" \
275
279
--scope ${VIRTUAL_NETWORK_RESOURCE_ID} \
276
280
--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
277
303
```
278
304
279
305
### Create a UDR Azure Spring Apps instance
You can’t perform that action at this time.
0 commit comments