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): support for i4g instance types in aws-ec2 #27639

Merged
merged 3 commits into from
Oct 24, 2023
Merged
Changes from 2 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
12 changes: 12 additions & 0 deletions packages/aws-cdk-lib/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,16 @@ export enum InstanceClass {
*/
I4I = 'i4i',

/**
* Storage optimized instances powered by Graviton2 processor, 4th generation
*/
STORAGE4_GRAVITON = 'storage4_graviton',

/**
* Storage optimized instances powered by Graviton2 processor, 4th generation
*/
I4G = 'i4g',

/**
* Storage optimized instances powered by Graviton2 processor, 4th generation
*/
Expand Down Expand Up @@ -1291,6 +1301,8 @@ export class InstanceType {
[InstanceClass.I3]: 'i3',
[InstanceClass.IO3_DENSE_NVME_DRIVE]: 'i3en',
[InstanceClass.I3EN]: 'i3en',
[InstanceClass.STORAGE4_GRAVITON]: 'i4g',
[InstanceClass.I4G]: 'i4g',
[InstanceClass.STORAGE4_GRAVITON_NETWORK_OPTIMIZED]: 'im4gn',
[InstanceClass.IM4GN]: 'im4gn',
[InstanceClass.STORAGE4_GRAVITON_NETWORK_STORAGE_OPTIMIZED]: 'is4gen',
Expand Down
Loading