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

feat(ec2): allow the use of graviton3 processors #20541

Merged
merged 8 commits into from
Jun 13, 2022
Merged
10 changes: 10 additions & 0 deletions packages/@aws-cdk/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,16 @@ export enum InstanceClass {
*/
C6G = 'c6g',

/**
* Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
*/
COMPUTE7_GRAVITON3 = 'c7g',

/**
* Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
*/
C7G = 'c7g',

/**
* Compute optimized instances for high performance computing, 6th generation with Graviton2 processors
* and local NVME drive
Expand Down
Loading