From 0104ec08665b039af12eff3ed6122cbfb12bb11f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Tue, 6 Aug 2024 10:05:57 +0200 Subject: [PATCH] feat(network): add new network zone ap-southeast [release-1.x] (#502) Network Zone was added today and includes the `sin` (Singapore) location. Learn more at https://docs.hetzner.cloud/changelog#2024-08-06-new-location-singapore --- hcloud/network.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hcloud/network.go b/hcloud/network.go index dbd262d3..7e6b9e44 100644 --- a/hcloud/network.go +++ b/hcloud/network.go @@ -19,9 +19,10 @@ type NetworkZone string // List of available Network Zones. const ( - NetworkZoneEUCentral NetworkZone = "eu-central" - NetworkZoneUSEast NetworkZone = "us-east" - NetworkZoneUSWest NetworkZone = "us-west" + NetworkZoneEUCentral NetworkZone = "eu-central" + NetworkZoneUSEast NetworkZone = "us-east" + NetworkZoneUSWest NetworkZone = "us-west" + NetworkZoneAPSouthEast NetworkZone = "ap-southeast" ) // NetworkSubnetType specifies a type of a subnet.