diff --git a/pkg/apis/eksctl.io/v1alpha5/types.go b/pkg/apis/eksctl.io/v1alpha5/types.go index 9348269170..7a27a0b6e6 100644 --- a/pkg/apis/eksctl.io/v1alpha5/types.go +++ b/pkg/apis/eksctl.io/v1alpha5/types.go @@ -164,6 +164,9 @@ const ( // RegionILCentral1 represents the Israel region Tel Aviv RegionILCentral1 = "il-central-1" + // RegionILCentral1 represents the Asia Pacific region New Zealand + RegionAPSoutheast6 = "ap-southeast-6" + // RegionUSGovWest1 represents the region GovCloud (US-West) RegionUSGovWest1 = "us-gov-west-1" @@ -384,6 +387,9 @@ const ( // eksResourceAccountMXCentral1 defines the AWS EKS account ID that provides node resources in mx-central-1 eksResourceAccountMXCentral1 = "730335286997" + // eksResourceAccountAPSoutheast6 defines the AWS EKS account ID that provides node resources in ap-southeast-6 + eksResourceAccountAPSoutheast6 = "333609536671" + // eksResourceAccountUSISOFSouth1 defines the AWS EKS account ID that provides node resources in us-isof-south-1 eksResourceAccountUSISOFSouth1 = "676585237158" @@ -538,6 +544,7 @@ func SupportedRegions() []string { RegionUSISOBEast1, RegionUSISOWest1, RegionMXCentral1, + RegionAPSoutheast6, RegionUSISOFSouth1, RegionUSISOFEast1, RegionEUISOEWest1, @@ -636,6 +643,8 @@ func EKSResourceAccountID(region string) string { return eksResourceAccountUSISOWest1 case RegionMXCentral1: return eksResourceAccountMXCentral1 + case RegionAPSoutheast6: + return eksResourceAccountAPSoutheast6 case RegionUSISOFSouth1: return eksResourceAccountUSISOFSouth1 case RegionUSISOFEast1: