File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
pkg/apis/eksctl.io/v1alpha5 Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,9 @@ const (
138
138
// RegionAPEast1 represents the Asia Pacific Region Hong Kong
139
139
RegionAPEast1 = "ap-east-1"
140
140
141
+ // RegionAPEast2 represents the Asia Pacific Region Taipei
142
+ RegionAPEast2 = "ap-east-2"
143
+
141
144
// RegionMECentral1 represents the Middle East Region Dubai
142
145
RegionMECentral1 = "me-central-1"
143
146
@@ -313,6 +316,9 @@ const (
313
316
// eksResourceAccountAPEast1 defines the AWS EKS account ID that provides node resources in ap-east-1 region
314
317
eksResourceAccountAPEast1 = "800184023465"
315
318
319
+ // eksResourceAccountAPEast2 defines the AWS EKS account ID that provides node resources in ap-east-2 region
320
+ eksResourceAccountAPEast2 = "533267051163"
321
+
316
322
// eksResourceAccountCAWest1 defines the AWS EKS account ID that provides node resources in ca-west-1 region
317
323
eksResourceAccountCAWest1 = "761377655185"
318
324
@@ -516,6 +522,7 @@ func SupportedRegions() []string {
516
522
RegionAPSouth1 ,
517
523
RegionAPSouth2 ,
518
524
RegionAPEast1 ,
525
+ RegionAPEast2 ,
519
526
RegionMECentral1 ,
520
527
RegionMESouth1 ,
521
528
RegionSAEast1 ,
@@ -583,6 +590,8 @@ func EKSResourceAccountID(region string) string {
583
590
switch region {
584
591
case RegionAPEast1 :
585
592
return eksResourceAccountAPEast1
593
+ case RegionAPEast2 :
594
+ return eksResourceAccountAPEast2
586
595
case RegionCAWest1 :
587
596
return eksResourceAccountCAWest1
588
597
case RegionMECentral1 :
You can’t perform that action at this time.
0 commit comments