Skip to content

Commit

Permalink
fix: update constants (#395)
Browse files Browse the repository at this point in the history
Co-authored-by: hoonoh <hoonoh@users.noreply.github.com>
  • Loading branch information
hoonoh and hoonoh committed Nov 18, 2021
1 parent 28248d8 commit 73e2277
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/constants/ec2-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,15 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'c6gn.large': { vCpu: 2, memoryGiB: 4 },
'c6gn.medium': { vCpu: 1, memoryGiB: 2 },
'c6gn.xlarge': { vCpu: 4, memoryGiB: 8 },
'c6i.12xlarge': { vCpu: 48, memoryGiB: 96 },
'c6i.16xlarge': { vCpu: 64, memoryGiB: 128 },
'c6i.24xlarge': { vCpu: 96, memoryGiB: 192 },
'c6i.2xlarge': { vCpu: 8, memoryGiB: 16 },
'c6i.32xlarge': { vCpu: 128, memoryGiB: 256 },
'c6i.4xlarge': { vCpu: 16, memoryGiB: 32 },
'c6i.8xlarge': { vCpu: 32, memoryGiB: 64 },
'c6i.large': { vCpu: 2, memoryGiB: 4 },
'c6i.xlarge': { vCpu: 4, memoryGiB: 8 },
'cc2.8xlarge': { vCpu: 32, memoryGiB: 60.5 },
'd2.2xlarge': { vCpu: 8, memoryGiB: 61 },
'd2.4xlarge': { vCpu: 16, memoryGiB: 122 },
Expand All @@ -103,6 +112,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'd3en.6xlarge': { vCpu: 24, memoryGiB: 96 },
'd3en.8xlarge': { vCpu: 32, memoryGiB: 128 },
'd3en.xlarge': { vCpu: 4, memoryGiB: 16 },
'dl1.24xlarge': { vCpu: 96, memoryGiB: 768 },
'f1.16xlarge': { vCpu: 64, memoryGiB: 976 },
'f1.2xlarge': { vCpu: 8, memoryGiB: 122 },
'f1.4xlarge': { vCpu: 16, memoryGiB: 244 },
Expand All @@ -124,6 +134,14 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'g4dn.8xlarge': { vCpu: 32, memoryGiB: 128 },
'g4dn.metal': { vCpu: 96, memoryGiB: 384 },
'g4dn.xlarge': { vCpu: 4, memoryGiB: 16 },
'g5.12xlarge': { vCpu: 48, memoryGiB: 192 },
'g5.16xlarge': { vCpu: 64, memoryGiB: 256 },
'g5.24xlarge': { vCpu: 96, memoryGiB: 384 },
'g5.2xlarge': { vCpu: 8, memoryGiB: 32 },
'g5.48xlarge': { vCpu: 192, memoryGiB: 768 },
'g5.4xlarge': { vCpu: 16, memoryGiB: 64 },
'g5.8xlarge': { vCpu: 32, memoryGiB: 128 },
'g5.xlarge': { vCpu: 4, memoryGiB: 16 },
'h1.16xlarge': { vCpu: 64, memoryGiB: 256 },
'h1.2xlarge': { vCpu: 8, memoryGiB: 32 },
'h1.4xlarge': { vCpu: 16, memoryGiB: 64 },
Expand Down

0 comments on commit 73e2277

Please sign in to comment.