From 1c357e0f25ff7c8c36a1913a4e8184eb553ef74e Mon Sep 17 00:00:00 2001 From: debrr07 Date: Wed, 16 Jul 2025 09:52:17 +0100 Subject: [PATCH] Automated: Add vnetRouteAllEnabled parameter --- azure/template.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/azure/template.json b/azure/template.json index 9de731e..48f464a 100644 --- a/azure/template.json +++ b/azure/template.json @@ -78,6 +78,10 @@ }, "deployPrivateLinkedScopedResource": { "type": "bool" + }, + "vnetRouteAllEnabled": { + "type": "bool", + "defaultValue": false } }, "variables": { @@ -215,6 +219,9 @@ }, "ipSecurityRestrictions": { "value": "[parameters('backEndAccessRestrictions')]" + }, + "vnetRouteAllEnabled": { + "value": "[parameters('vnetRouteAllEnabled')]" } } },