Skip to content

Commit c5f28b5

Browse files
author
danycontre
committed
updates
1 parent f75c2c0 commit c5f28b5

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

workload/arm/deploy-baseline.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"_generator": {
66
"name": "bicep",
77
"version": "0.18.4.5664",
8-
"templateHash": "18402078529000201790"
8+
"templateHash": "4258897336129595394"
99
},
1010
"name": "AVD Accelerator - Baseline Deployment",
1111
"description": "AVD Accelerator - Deployment Baseline"
@@ -7310,7 +7310,7 @@
73107310
"_generator": {
73117311
"name": "bicep",
73127312
"version": "0.18.4.5664",
7313-
"templateHash": "17875855700729829866"
7313+
"templateHash": "7208426384568881318"
73147314
}
73157315
},
73167316
"parameters": {
@@ -9406,7 +9406,7 @@
94069406
"tags": {
94079407
"value": "[parameters('tags')]"
94089408
},
9409-
"routes": "[if(variables('varCreateAvdStaicRoute'), createObject('value', createArray(createObject('name', 'AVDServiceTraffic', 'properties', createObject('addressPrefix', 'WindowsVirtualDesktop', 'hasBgpOverride', true(), 'nextHopType', 'Internet')))), createObject('value', createArray()))]"
9409+
"routes": "[if(variables('varCreateAvdStaicRoute'), createObject('value', createArray(createObject('name', 'AVDServiceTraffic', 'properties', createObject('addressPrefix', 'WindowsVirtualDesktop', 'hasBgpOverride', true(), 'nextHopType', 'Internet')), createObject('name', 'AVDStunTurnTraffic', 'properties', createObject('addressPrefix', '20.202.0.0/16', 'hasBgpOverride', true(), 'nextHopType', 'Internet')))), createObject('value', createArray()))]"
94109410
},
94119411
"template": {
94129412
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",

workload/bicep/modules/networking/deploy.bicep

+8
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,14 @@ module routeTableAvd '../../../../carml/1.3.0/Microsoft.Network/routeTables/depl
272272
nextHopType: 'Internet'
273273
}
274274
}
275+
{
276+
name: 'AVDStunTurnTraffic'
277+
properties: {
278+
addressPrefix: '20.202.0.0/16'
279+
hasBgpOverride: true
280+
nextHopType: 'Internet'
281+
}
282+
}
275283
] : []
276284
}
277285
dependsOn: []

0 commit comments

Comments
 (0)