Skip to content
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

Re - Add support for Traffic selector param in VpnConnection for virtualWan #13103

Merged
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 @@ -20,6 +20,7 @@
"enableInternetSecurity": false,
"ingressBytesTransferred": 0,
"egressBytesTransferred": 0,
"trafficSelectorPolicies": [],
"vpnLinkConnections": [
{
"name": "Connection-Link1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"enableInternetSecurity": false,
"ingressBytesTransferred": 0,
"egressBytesTransferred": 0,
"trafficSelectorPolicies": [],
"vpnLinkConnections": [
{
"name": "Connection-Link1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
"connectionBandwidth": 200,
"vpnConnectionProtocolType": "IKEv2",
"sharedKey": "key",
"vpnLinkConnectionMode": "Default"
"vpnLinkConnectionMode": "Default",
"usePolicyBasedTrafficSelectors": false
}
}
]
],
"trafficSelectorPolicies": []
}
}
},
Expand Down Expand Up @@ -91,7 +93,8 @@
"vnetRoutes": {
"staticRoutes": []
}
}
},
"trafficSelectorPolicies": []
}
}
},
Expand Down Expand Up @@ -157,7 +160,8 @@
"vnetRoutes": {
"staticRoutes": []
}
}
},
"trafficSelectorPolicies": []
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6357,6 +6357,13 @@
},
"description": "The IPSec Policies to be considered by this connection."
},
"trafficSelectorPolicies": {
"type": "array",
"items": {
"$ref": "./virtualNetworkGateway.json#/definitions/TrafficSelectorPolicy"
},
"description": "The Traffic Selector Policies to be considered by this connection."
},
"enableRateLimiting": {
"type": "boolean",
"description": "EnableBgp flag."
Expand Down