From fc4d87ff5b5dd86a7d6ca0fe256cc4f449dfdb5f Mon Sep 17 00:00:00 2001 From: kamyl Date: Thu, 14 Mar 2024 11:25:44 +0200 Subject: [PATCH] chore(gwaas): add more notes about beta state of vpn feature --- CHANGELOG.md | 2 +- upcloud/gateway.go | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8a5acc..1f82a3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] ### Added -- Support for Gateway VPN feature +- **Experimental**, Gateway: support for VPN feature. Note that VPN feature is currently in beta, you can learn more about it on the [product page](https://upcloud.com/resources/docs/networking#nat-and-vpn-gateways) ## [8.2.0] diff --git a/upcloud/gateway.go b/upcloud/gateway.go index c4081bd..f48576c 100644 --- a/upcloud/gateway.go +++ b/upcloud/gateway.go @@ -53,7 +53,12 @@ const ( // GatewayFeatureNAT is a Network Address Translation (NAT) service that offers a way for cloud servers in SDN private networks to connect to the Internet through the public IP assigned to the network gateway service GatewayFeatureNAT GatewayFeature = "nat" + // GatewayFeatureVPN is a Virtual Private Network (VPN) service used to establish an encrypted network connection when using public networks + // Please note that VPN feature is currently in beta. You can learn more about it on its [product page] + // Also note that VPN is available only in some of the gateway plans. To check which plans support VPN, you can use the GetGatewayPlans method. + // + // [product page]: https://upcloud.com/resources/docs/networking#nat-and-vpn-gateways GatewayFeatureVPN GatewayFeature = "vpn" GatewayConnectionTypeIPSec GatewayConnectionType = "ipsec"