Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Bangkok region (ap-southeast-7) #8114

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pkg/apis/eksctl.io/v1alpha5/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ const (
// RegionAPSouthEast5 represents the Asia-Pacific South East Region Kuala Lumpur
RegionAPSouthEast5 = "ap-southeast-5"

// RegionAPSouthEast7 represents the Asia-Pacific South East Region Bangkok
RegionAPSouthEast7 = "ap-southeast-7"

// RegionAPSouth1 represents the Asia-Pacific South Region Mumbai
RegionAPSouth1 = "ap-south-1"

Expand Down Expand Up @@ -393,6 +396,9 @@ const (
// eksResourceAccountAPSouthEast5 defines the AWS EKS account ID that provides node resources in ap-southeast-5
eksResourceAccountAPSouthEast5 = "151610086707"

// eksResourceAccountAPSouthEast7 defines the AWS EKS account ID that provides node resources in ap-southeast-7
eksResourceAccountAPSouthEast7 = "121268973566"

// eksResourceAccountUSISOEast1 defines the AWS EKS account ID that provides node resources in us-iso-east-1
eksResourceAccountUSISOEast1 = "725322719131"

Expand Down Expand Up @@ -525,6 +531,7 @@ func SupportedRegions() []string {
RegionAPSouthEast3,
RegionAPSouthEast4,
RegionAPSouthEast5,
RegionAPSouthEast7,
RegionAPSouth1,
RegionAPSouth2,
RegionAPEast1,
Expand Down Expand Up @@ -674,6 +681,8 @@ func EKSResourceAccountID(region string) string {
return eksResourceAccountAPSouthEast4
case RegionAPSouthEast5:
return eksResourceAccountAPSouthEast5
case RegionAPSouthEast7:
return eksResourceAccountAPSouthEast7
case RegionILCentral1:
return eksResourceAccountILCentral1
case RegionUSISOEast1:
Expand Down
Loading