Skip to content

Commit

Permalink
Merge branch 'main' into ec2-alpha-rangesoverlap
Browse files Browse the repository at this point in the history
  • Loading branch information
awsdro authored Dec 10, 2024
2 parents 7de950d + ce0e09f commit 1b29712
Show file tree
Hide file tree
Showing 12 changed files with 1,876 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/@aws-cdk/aws-redshift-alpha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ as it's a fast operation and typically completes in minutes. Elastic resize is o
* dc2.8xlarge
* ds2.xlarge
* ds2.8xlarge
* ra3.large
* ra3.xlplus
* ra3.4xlarge
* ra3.16xlarge
Expand Down
5 changes: 5 additions & 0 deletions packages/@aws-cdk/aws-redshift-alpha/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ export enum NodeType {
*/
DC2_8XLARGE = 'dc2.8xlarge',

/**
* ra3.large
*/
RA3_LARGE = 'ra3.large',

/**
* ra3.xlplus
*/
Expand Down
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-redshift-alpha/test/cluster.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ describe('multi AZ cluster', () => {
masterPassword: cdk.SecretValue.unsafePlainText('tooshort'),
},
vpc,
nodeType: NodeType.RA3_XLPLUS,
nodeType: NodeType.RA3_LARGE,
multiAz: true,
});

Expand All @@ -747,7 +747,7 @@ describe('multi AZ cluster', () => {
AutomatedSnapshotRetentionPeriod: 1,
Encrypted: true,
NumberOfNodes: 2,
NodeType: 'ra3.xlplus',
NodeType: 'ra3.large',
DBName: 'default_db',
PubliclyAccessible: false,
ClusterSubnetGroupName: { Ref: 'RedshiftSubnetsDFE70E0A' },
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1b29712

Please sign in to comment.