Skip to content

Commit 7cf024a

Browse files
authored
Add support for Kuala Lumpur region (ap-southeast-5) (#7910)
1 parent 7f91b9d commit 7cf024a

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ const (
171171
// RegionAPSouthEast4 represents the Asia-Pacific South East Region Melbourne
172172
RegionAPSouthEast4 = "ap-southeast-4"
173173

174+
// RegionAPSouthEast5 represents the Asia-Pacific South East Region Kuala Lumpur
175+
RegionAPSouthEast5 = "ap-southeast-5"
176+
174177
// RegionAPSouth1 represents the Asia-Pacific South Region Mumbai
175178
RegionAPSouth1 = "ap-south-1"
176179

@@ -385,6 +388,10 @@ const (
385388

386389
// eksResourceAccountAPSouthEast4 defines the AWS EKS account ID that provides node resources in ap-southeast-4
387390
eksResourceAccountAPSouthEast4 = "491585149902"
391+
392+
// eksResourceAccountAPSouthEast5 defines the AWS EKS account ID that provides node resources in ap-southeast-5
393+
eksResourceAccountAPSouthEast5 = "151610086707"
394+
388395
// eksResourceAccountUSISOEast1 defines the AWS EKS account ID that provides node resources in us-iso-east-1
389396
eksResourceAccountUSISOEast1 = "725322719131"
390397

@@ -516,6 +523,7 @@ func SupportedRegions() []string {
516523
RegionAPSouthEast2,
517524
RegionAPSouthEast3,
518525
RegionAPSouthEast4,
526+
RegionAPSouthEast5,
519527
RegionAPSouth1,
520528
RegionAPSouth2,
521529
RegionAPEast1,
@@ -662,6 +670,8 @@ func EKSResourceAccountID(region string) string {
662670
return eksResourceAccountAPSouthEast3
663671
case RegionAPSouthEast4:
664672
return eksResourceAccountAPSouthEast4
673+
case RegionAPSouthEast5:
674+
return eksResourceAccountAPSouthEast5
665675
case RegionILCentral1:
666676
return eksResourceAccountILCentral1
667677
case RegionUSISOEast1:

userdocs/src/getting-started.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Getting started
22

33
!!! tip "New for 2024"
4+
`eksctl` now supports new region Kuala Lumpur (`ap-southeast-5`)
5+
46
EKS Add-ons now support receiving IAM permissions via [EKS Pod Identity Associations](/usage/pod-identity-associations/#eks-add-ons-support-for-pod-identity-associations)
57

68
`eksctl` now supports AMIs based on AmazonLinux2023

userdocs/theme/home.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ <h2><code>eksctl create cluster</code></h2>
533533
<a href="/usage/outposts" tabindex="-1" title="Usage Outposts"><img src="assets/images/outposts.png" alt="Usage Outposts" loading="lazy"></a>
534534
<figcaption class="md-typeset">
535535
<h2>Check out latest eksctl features</h2>
536+
<p>Support for Kuala Lumpur region (<code>ap-southeast-5</code>)</p>
536537
<p>EKS Add-ons support receiving IAM permissions via <a href="/usage/pod-identity-associations/#eks-add-ons-support-for-pod-identity-associations">EKS Pod Identity Associations</a>.</p>
537538
<p>Support for AMIs based on AmazonLinux2023</p>
538539
<p>Configuring cluster access management via <a href="/usage/access-entries">AWS EKS Access Entries</a>.</p>

0 commit comments

Comments
 (0)