Skip to content

Add properties to ExpressRoute gateway resource types to allow custom… #20831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"bounds": {
"min": 3
}
}
},
"allowNonVirtualWanTraffic": false
}
}
},
Expand All @@ -35,7 +36,8 @@
"bounds": {
"min": 3
}
}
},
"allowNonVirtualWanTraffic": false
}
}
},
Expand All @@ -55,7 +57,8 @@
"bounds": {
"min": 3
}
}
},
"allowNonVirtualWanTraffic": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"provisioningState": "Succeeded",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/virtualHubName"
}
},
"allowNonVirtualWanTraffic": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"min": 2
}
},
"allowNonVirtualWanTraffic": false,
"expressRouteConnections": [
{
"name": "connectionName",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"min": 2
}
},
"allowNonVirtualWanTraffic": false,
"expressRouteConnections": [
{
"name": "connectionName",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"provisioningState": "Succeeded",
"virtualHub": {
"id": "/subscriptions/subid/resourceGroups/resourceGroupName/providers/Microsoft.Network/virtualHubs/virtualHubName"
}
},
"allowNonVirtualWanTraffic": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@
"addressPrefixes": [
"101.168.0.6/32"
]
}
},
"allowVirtualWanTraffic": false,
"allowRemoteVnetTraffic": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@
"addressPrefixes": [
"101.168.0.6/32"
]
}
},
"allowVirtualWanTraffic": false,
"allowRemoteVnetTraffic": false
}
},
{
Expand Down Expand Up @@ -210,7 +212,9 @@
"addressPrefixes": [
"101.168.0.6/32"
]
}
},
"allowVirtualWanTraffic": false,
"allowRemoteVnetTraffic": false
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@
"addressPrefixes": [
"101.168.0.6/32"
]
}
},
"allowVirtualWanTraffic": false,
"allowRemoteVnetTraffic": false
},
"location": "centralus"
}
Expand Down Expand Up @@ -217,7 +219,9 @@
"addressPrefixes": [
"101.168.0.6/32"
]
}
},
"allowVirtualWanTraffic": false,
"allowRemoteVnetTraffic": false
}
}
},
Expand Down Expand Up @@ -338,7 +342,9 @@
"addressPrefixes": [
"101.168.0.6/32"
]
}
},
"allowVirtualWanTraffic": false,
"allowRemoteVnetTraffic": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@
"addressPrefixes": [
"101.168.0.6/32"
]
}
},
"allowVirtualWanTraffic": false,
"allowRemoteVnetTraffic": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2823,6 +2823,14 @@
"enableBgpRouteTranslationForNat": {
"type": "boolean",
"description": "EnableBgpRouteTranslationForNat flag."
},
"allowVirtualWanTraffic": {
"type": "boolean",
"description": "Configures this gateway to accept traffic from remote Virtual WAN networks."
},
"allowRemoteVnetTraffic": {
"type": "boolean",
"description": "Configure this gateway to accept traffic from other Azure Virtual Networks. This configuration does not support connectivity to Azure Virtual WAN."
}
},
"description": "VirtualNetworkGateway properties."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8637,6 +8637,10 @@
"virtualHub": {
"$ref": "#/definitions/VirtualHubId",
"description": "The Virtual Hub where the ExpressRoute gateway is or will be deployed."
},
"allowNonVirtualWanTraffic": {
"type": "boolean",
"description": "Configures this gateway to accept traffic from non Virtual WAN networks."
}
},
"description": "ExpressRoute gateway resource properties."
Expand Down