Skip to content

Commit 864a7c6

Browse files
authored
feat(eks-v2-alpha): add new nodegroup ami type (#34025)
### Reason for this change Adding missing nodegroup ami type in eks and eks-v2-alpha modules ### Description of changes adding missing enum values https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-nodegroup.html#cfn-eks-nodegroup-amitype ### Checklist - [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 242091a commit 864a7c6

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

packages/@aws-cdk/aws-eks-v2-alpha/lib/managed-nodegroup.ts

+8
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ export enum NodegroupAmiType {
5757
* Bottlerocket with Nvidia-GPU support (x86-64)
5858
*/
5959
BOTTLEROCKET_X86_64_NVIDIA = 'BOTTLEROCKET_x86_64_NVIDIA',
60+
/**
61+
* Bottlerocket Linux (ARM-64) with FIPS enabled
62+
*/
63+
BOTTLEROCKET_ARM_64_FIPS = 'BOTTLEROCKET_ARM_64_FIPS',
64+
/**
65+
* Bottlerocket (x86-64) with FIPS enabled
66+
*/
67+
BOTTLEROCKET_X86_64_FIPS = 'BOTTLEROCKET_x86_64_FIPS',
6068
/**
6169
* Windows Core 2019 (x86-64)
6270
*/

packages/aws-cdk-lib/aws-eks/lib/managed-nodegroup.ts

+8
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ export enum NodegroupAmiType {
5757
* Bottlerocket with Nvidia-GPU support (x86-64)
5858
*/
5959
BOTTLEROCKET_X86_64_NVIDIA = 'BOTTLEROCKET_x86_64_NVIDIA',
60+
/**
61+
* Bottlerocket Linux (ARM-64) with FIPS enabled
62+
*/
63+
BOTTLEROCKET_ARM_64_FIPS = 'BOTTLEROCKET_ARM_64_FIPS',
64+
/**
65+
* Bottlerocket (x86-64) with FIPS enabled
66+
*/
67+
BOTTLEROCKET_X86_64_FIPS = 'BOTTLEROCKET_x86_64_FIPS',
6068
/**
6169
* Windows Core 2019 (x86-64)
6270
*/

0 commit comments

Comments
 (0)