Skip to content

Commit

Permalink
Allow OpenVPN as a VPN client protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
maetthu committed Oct 21, 2018
1 parent a6e663e commit 2da6064
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions azurerm/resource_arm_virtual_network_gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ func resourceArmVirtualNetworkGateway() *schema.Resource {
Type: schema.TypeString,
ValidateFunc: validation.StringInSlice([]string{
string(network.IkeV2),
string(network.OpenVPN),
string(network.SSTP),
}, true),
},
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/virtual_network_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The `vpn_client_configuration` block supports:
This setting is incompatible with the use of `root_certificate` and `revoked_certificate`.

* `vpn_client_protocols` - (Optional) List of the protocols supported by the vpn client.
The supported values are `SSTP` and `IkeV2`.
The supported values are `SSTP`, `IkeV2` and `OpenVPN`.

The `bgp_settings` block supports:

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/virtual_network_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ The `vpn_client_configuration` block supports:
This setting is incompatible with the use of `root_certificate` and `revoked_certificate`.

* `vpn_client_protocols` - (Optional) List of the protocols supported by the vpn client.
The supported values are `SSTP` and `IkeV2`.
The supported values are `SSTP`, `IkeV2` and `OpenVPN`. **NOTE**: The OpenVPN protocol is currently in Public Preview. You need to [opt in to be able to use OpenVPN as an option](https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-openvpn).

The `bgp_settings` block supports:

Expand Down

0 comments on commit 2da6064

Please sign in to comment.