Skip to content

Commit

Permalink
Add C5A Instance Type Family (#1025)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Stack <[email protected]>
  • Loading branch information
con5cience and stack72 authored Jul 6, 2020
1 parent 3a175d1 commit 935aba6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CHANGELOG
* Upgrade to v2.69.0 of the AWS Terraform Provider
** Please Note the following **
* `ec2.CustomerGateway.bgpAsn` has changed from an `int` to `string` to allow 4-byte ASNs
* Add `C5A` instance type family to `aws.ec2.InstanceTypes`.

---

Expand Down
18 changes: 17 additions & 1 deletion sdk/nodejs/ec2/instanceType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ export module InstanceTypes {
export const C5_9XLarge: InstanceType = "c5.9xlarge";
export const C5_Large: InstanceType = "c5.large";
export const C5_XLarge: InstanceType = "c5.xlarge";
export const C5a_12XLarge: InstanceType = "c5a.12xlarge";
export const C5a_16XLarge: InstanceType = "c5a.16xlarge";
export const C5a_2XLarge: InstanceType = "c5a.2xlarge";
export const C5a_24XLarge: InstanceType = "c5a.24xlarge";
export const C5a_4XLarge: InstanceType = "c5a.4xlarge";
export const C5a_8XLarge: InstanceType = "c5a.8xlarge";
export const C5a_Large: InstanceType = "c5a.large";
export const C5a_XLarge: InstanceType = "c5a.xlarge";
export const C5d_18XLarge: InstanceType = "c5d.18xlarge";
export const C5d_2XLarge: InstanceType = "c5d.2xlarge";
export const C5d_4XLarge: InstanceType = "c5d.4xlarge";
Expand Down Expand Up @@ -204,8 +212,16 @@ export type InstanceType =
"c5.2xlarge" |
"c5.large" |
"c5.9xlarge" |
"c5d.18xlarge" |
"c5.xlarge" |
"c5a.12xlarge" |
"c5a.16xlarge" |
"c5a.2xlarge" |
"c5a.24xlarge" |
"c5a.4xlarge" |
"c5a.8xlarge" |
"c5a.large" |
"c5a.xlarge" |
"c5d.18xlarge" |
"c5d.4xlarge" |
"c5d.2xlarge" |
"c5d.large" |
Expand Down

0 comments on commit 935aba6

Please sign in to comment.