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 r7i instance type in aws-ec2 #27737

Merged
merged 15 commits into from
Nov 9, 2023
Merged
Changes from 13 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
16 changes: 14 additions & 2 deletions packages/aws-cdk-lib/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,12 +347,22 @@ export enum InstanceClass {
R7GD = 'r7gd',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ 3.2GHz turbo frequency
*/
MEMORY7_INTEL_BASE = 'memory7-intel-base',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ 3.2GHz turbo frequency
*/
R7I = 'r7i',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ sustained 3.9GHz turbo frequency
scanlonp marked this conversation as resolved.
Show resolved Hide resolved
*/
MEMORY7_INTEL = 'memory7-intel',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ sustained 3.9GHz turbo frequency
scanlonp marked this conversation as resolved.
Show resolved Hide resolved
*/
R7IZ = 'r7iz',

Expand Down Expand Up @@ -1335,6 +1345,8 @@ export class InstanceType {
[InstanceClass.R7G]: 'r7g',
[InstanceClass.MEMORY7_GRAVITON3_NVME_DRIVE]: 'r7gd',
[InstanceClass.R7GD]: 'r7gd',
[InstanceClass.MEMORY7_INTEL_BASE]: 'r7i',
[InstanceClass.R7I]: 'r7i',
[InstanceClass.MEMORY7_INTEL]: 'r7iz',
[InstanceClass.R7IZ]: 'r7iz',
[InstanceClass.MEMORY7_AMD]: 'r7a',
Expand Down