Skip to content

Commit

Permalink
Virtual network gateway changes for dns forwarding (#7359)
Browse files Browse the repository at this point in the history
* Virtuan network gateway changes for dns forwarding

* Fixed example response

* Fixed examples

* Fixed 201 example
  • Loading branch information
absrivas12 authored and tjprescott committed Oct 2, 2019
1 parent 0302858 commit 7fde8a0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"vpnType": "RouteBased",
"enableBgp": false,
"activeActive": false,
"enableDnsForwarding": true,
"sku": {
"name": "VpnGw1",
"tier": "VpnGw1"
Expand Down Expand Up @@ -80,6 +81,8 @@
"vpnGatewayGeneration": "None",
"enableBgp": false,
"activeActive": false,
"enableDnsForwarding": true,
"inboundDnsForwardingEndpoint": "10.0.1.14",
"vpnClientConfiguration": {
"vpnClientProtocols": [
"OpenVPN"
Expand Down Expand Up @@ -139,6 +142,8 @@
"vpnType": "RouteBased",
"enableBgp": false,
"activeActive": false,
"enableDnsForwarding": true,
"inboundDnsForwardingEndpoint": "10.0.1.14",
"vpnClientConfiguration": {
"vpnClientProtocols": [
"OpenVPN"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2071,6 +2071,15 @@
"type": "boolean",
"description": "ActiveActive flag."
},
"enableDnsForwarding": {
"type": "boolean",
"description": "Whether dns forwarding is enabled or not."
},
"inboundDnsForwardingEndpoint": {
"type": "string",
"readOnly": true,
"description": "The IP address allocated by the gateway to which dns requests can be sent."
},
"gatewayDefaultSite": {
"$ref": "./network.json#/definitions/SubResource",
"description": "The reference of the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting."
Expand Down

0 comments on commit 7fde8a0

Please sign in to comment.