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