Ensure Wireguard Gateway

Ensures that the WireGuard Gateway with the provided ID is created or modified. Remember to provide the full WireGuard Gateway specification to ensure the WireGuard Gateway with the respective ID is created or updated. When left empty, they are filled with default values or remain empty; previously provided values are not used for these empty fields.

To ensure that the WireGuard Gateway with the provided ID is created or modified, perform PUT request.

Note:

  • If WireGuard Gateway for a given gatewayId does not exist, a new one is created instead.

  • VPN Gateways do not support connecting to LANs directly managed by Managed Kubernetes. However, you can attach additional LANs to node pools and connect these LANs to a VPN Gateway.

Endpoint

Use a region-specific endpoint to ensure that the WireGuard Gateway is created or modified: https://vpn.{region}.ionos.com/wireguardgateways/{gatewayId}.

Request

Note: The following request contains a sample gatewayId. Replace them with the gatewayId value whose information you want to update.

curl--location \--request PUT'https://vpn.de-fra.ionos.com/wireguardgateways/85c79b4b-5b40-570a-b788-58dd46ea71e2' \--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiO' \--header 'Content-Type: application/json' \--data-raw '{ "id": "85c79b4b-5b40-570a-b788-58dd46ea71e2", "metadata": {}, "properties": { "name": "My Company Gateway", "description": "This gateway allows connections to Datacenter LAN X.", "gatewayIP": "192.0.2.0", "interfaceIPv4CIDR": "172.17.0.1/32", "interfaceIPv6CIDR": "2001:0db8:85a3::/128", "connections": [ { "datacenterId": "5a029f4a-72e5-11ec-90d6-0242ac120003", "lanId": "2", "ipv4CIDR": "192.168.1.100/24", "ipv6CIDR": "2001:0db8:85a3::/24" } ], "privateKey": "0HpE4BNwGHabeaC4aY/GFxB6fBSc0d49Db0qAzRVSVc=", "listenPort": 51820 }}'

Below is the list of mandatory path parameters:

Path Parameters
Type
Description
Example

gatewayId

string

The ID (UUID) of the WireGuard Gateway.

85c79b4b-5b40-570a-b788-58dd46ea71e2

Response

200 Successful operation

Following is an example of when a WireGuard Gateway is successfully created.

{ "id": "85c79b4b-5b40-570a-b788-58dd46ea71e2", "metadata": {}, "properties": { "name": "My Company Gateway", "description": "This gateway allows connections to Datacenter LAN X.", "gatewayIP": "81.173.1.2", "interfaceIPv4CIDR": "172.16.0.1/30", "interfaceIPv6CIDR": "fd00::2/128", "connections": [ { "datacenterId": "5a029f4a-72e5-11ec-90d6-0242ac120003", "lanId": "2", "ipv4CIDR": "192.168.1.100/24", "ipv6CIDR": "fd28:5f8d:d9fe:08bd::/64" } ], "privateKey": "0HpE4BNwGHabeaC4aY/GFxB6fBSc0d49Db0qAzRVSVc=", "listenPort": 51820, "tier": "STANDARD", "maintenanceWindow": { "time": "16:30:59", "dayOfTheWeek": "Monday" } }}

Last updated

Was this helpful?

close