Skip to content

Commit

Permalink
fix: update constants (#582)
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 29, 2022
1 parent e9bcea2 commit 4f50653
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/constants/ec2-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,15 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'c6id.large': { vCpu: 2, memoryGiB: 4 },
'c6id.metal': { vCpu: 128, memoryGiB: 256 },
'c6id.xlarge': { vCpu: 4, memoryGiB: 8 },
'c6in.12xlarge': { vCpu: 48, memoryGiB: 96 },
'c6in.16xlarge': { vCpu: 64, memoryGiB: 128 },
'c6in.24xlarge': { vCpu: 96, memoryGiB: 192 },
'c6in.2xlarge': { vCpu: 8, memoryGiB: 16 },
'c6in.32xlarge': { vCpu: 128, memoryGiB: 256 },
'c6in.4xlarge': { vCpu: 16, memoryGiB: 32 },
'c6in.8xlarge': { vCpu: 32, memoryGiB: 64 },
'c6in.large': { vCpu: 2, memoryGiB: 4 },
'c6in.xlarge': { vCpu: 4, memoryGiB: 8 },
'c7g.12xlarge': { vCpu: 48, memoryGiB: 96 },
'c7g.16xlarge': { vCpu: 64, memoryGiB: 128 },
'c7g.2xlarge': { vCpu: 8, memoryGiB: 16 },
Expand Down Expand Up @@ -351,6 +360,24 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'm6id.large': { vCpu: 2, memoryGiB: 8 },
'm6id.metal': { vCpu: 128, memoryGiB: 512 },
'm6id.xlarge': { vCpu: 4, memoryGiB: 16 },
'm6idn.12xlarge': { vCpu: 48, memoryGiB: 192 },
'm6idn.16xlarge': { vCpu: 64, memoryGiB: 256 },
'm6idn.24xlarge': { vCpu: 96, memoryGiB: 384 },
'm6idn.2xlarge': { vCpu: 8, memoryGiB: 32 },
'm6idn.32xlarge': { vCpu: 128, memoryGiB: 512 },
'm6idn.4xlarge': { vCpu: 16, memoryGiB: 64 },
'm6idn.8xlarge': { vCpu: 32, memoryGiB: 128 },
'm6idn.large': { vCpu: 2, memoryGiB: 8 },
'm6idn.xlarge': { vCpu: 4, memoryGiB: 16 },
'm6in.12xlarge': { vCpu: 48, memoryGiB: 192 },
'm6in.16xlarge': { vCpu: 64, memoryGiB: 256 },
'm6in.24xlarge': { vCpu: 96, memoryGiB: 384 },
'm6in.2xlarge': { vCpu: 8, memoryGiB: 32 },
'm6in.32xlarge': { vCpu: 128, memoryGiB: 512 },
'm6in.4xlarge': { vCpu: 16, memoryGiB: 64 },
'm6in.8xlarge': { vCpu: 32, memoryGiB: 128 },
'm6in.large': { vCpu: 2, memoryGiB: 8 },
'm6in.xlarge': { vCpu: 4, memoryGiB: 16 },
'mac1.metal': { vCpu: 12, memoryGiB: 32 },
'mac2.metal': { vCpu: 8, memoryGiB: 16 },
'p2.16xlarge': { vCpu: 64, memoryGiB: 732 },
Expand Down Expand Up @@ -482,6 +509,24 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'r6id.large': { vCpu: 2, memoryGiB: 16 },
'r6id.metal': { vCpu: 128, memoryGiB: 1024 },
'r6id.xlarge': { vCpu: 4, memoryGiB: 32 },
'r6idn.12xlarge': { vCpu: 48, memoryGiB: 384 },
'r6idn.16xlarge': { vCpu: 64, memoryGiB: 512 },
'r6idn.24xlarge': { vCpu: 96, memoryGiB: 768 },
'r6idn.2xlarge': { vCpu: 8, memoryGiB: 64 },
'r6idn.32xlarge': { vCpu: 128, memoryGiB: 1024 },
'r6idn.4xlarge': { vCpu: 16, memoryGiB: 128 },
'r6idn.8xlarge': { vCpu: 32, memoryGiB: 256 },
'r6idn.large': { vCpu: 2, memoryGiB: 16 },
'r6idn.xlarge': { vCpu: 4, memoryGiB: 32 },
'r6in.12xlarge': { vCpu: 48, memoryGiB: 384 },
'r6in.16xlarge': { vCpu: 64, memoryGiB: 512 },
'r6in.24xlarge': { vCpu: 96, memoryGiB: 768 },
'r6in.2xlarge': { vCpu: 8, memoryGiB: 64 },
'r6in.32xlarge': { vCpu: 128, memoryGiB: 1024 },
'r6in.4xlarge': { vCpu: 16, memoryGiB: 128 },
'r6in.8xlarge': { vCpu: 32, memoryGiB: 256 },
'r6in.large': { vCpu: 2, memoryGiB: 16 },
'r6in.xlarge': { vCpu: 4, memoryGiB: 32 },
't1.micro': { vCpu: 1, memoryGiB: 0.613 },
't2.2xlarge': { vCpu: 8, memoryGiB: 32 },
't2.large': { vCpu: 2, memoryGiB: 8 },
Expand Down

0 comments on commit 4f50653

Please sign in to comment.