Skip to content

Commit f9f23bf

Browse files
Add support for ap-southeast-6 (#8544)
1 parent f8bce4d commit f9f23bf

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pkg/apis/eksctl.io/v1alpha5/types.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@ const (
166166
// RegionILCentral1 represents the Israel region Tel Aviv
167167
RegionILCentral1 = "il-central-1"
168168

169+
// RegionILCentral1 represents the Asia Pacific region New Zealand
170+
RegionAPSoutheast6 = "ap-southeast-6"
171+
169172
// RegionUSGovWest1 represents the region GovCloud (US-West)
170173
RegionUSGovWest1 = "us-gov-west-1"
171174

@@ -386,6 +389,9 @@ const (
386389
// eksResourceAccountMXCentral1 defines the AWS EKS account ID that provides node resources in mx-central-1
387390
eksResourceAccountMXCentral1 = "730335286997"
388391

392+
// eksResourceAccountAPSoutheast6 defines the AWS EKS account ID that provides node resources in ap-southeast-6
393+
eksResourceAccountAPSoutheast6 = "333609536671"
394+
389395
// eksResourceAccountUSISOFSouth1 defines the AWS EKS account ID that provides node resources in us-isof-south-1
390396
eksResourceAccountUSISOFSouth1 = "676585237158"
391397

@@ -550,6 +556,7 @@ func SupportedRegions() []string {
550556
RegionUSISOBEast1,
551557
RegionUSISOWest1,
552558
RegionMXCentral1,
559+
RegionAPSoutheast6,
553560
RegionUSISOFSouth1,
554561
RegionUSISOFEast1,
555562
RegionEUISOEWest1,
@@ -648,6 +655,8 @@ func EKSResourceAccountID(region string) string {
648655
return eksResourceAccountUSISOWest1
649656
case RegionMXCentral1:
650657
return eksResourceAccountMXCentral1
658+
case RegionAPSoutheast6:
659+
return eksResourceAccountAPSoutheast6
651660
case RegionUSISOFSouth1:
652661
return eksResourceAccountUSISOFSouth1
653662
case RegionUSISOFEast1:

0 commit comments

Comments
 (0)