Skip to content

Commit

Permalink
fix: update constants (#404)
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 30, 2021
1 parent 5e54a54 commit 4575091
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/constants/ec2-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'g5.4xlarge': { vCpu: 16, memoryGiB: 64 },
'g5.8xlarge': { vCpu: 32, memoryGiB: 128 },
'g5.xlarge': { vCpu: 4, memoryGiB: 16 },
'g5g.16xlarge': { vCpu: 64, memoryGiB: 128 },
'g5g.2xlarge': { vCpu: 8, memoryGiB: 16 },
'g5g.4xlarge': { vCpu: 16, memoryGiB: 32 },
'g5g.8xlarge': { vCpu: 32, memoryGiB: 64 },
'g5g.metal': { vCpu: 64, memoryGiB: 128 },
'g5g.xlarge': { vCpu: 4, memoryGiB: 8 },
'h1.16xlarge': { vCpu: 64, memoryGiB: 256 },
'h1.2xlarge': { vCpu: 8, memoryGiB: 32 },
'h1.4xlarge': { vCpu: 16, memoryGiB: 64 },
Expand Down Expand Up @@ -246,6 +252,16 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'm5zn.large': { vCpu: 2, memoryGiB: 8 },
'm5zn.metal': { vCpu: 48, memoryGiB: 192 },
'm5zn.xlarge': { vCpu: 4, memoryGiB: 16 },
'm6a.12xlarge': { vCpu: 48, memoryGiB: 192 },
'm6a.16xlarge': { vCpu: 64, memoryGiB: 256 },
'm6a.24xlarge': { vCpu: 96, memoryGiB: 384 },
'm6a.2xlarge': { vCpu: 8, memoryGiB: 32 },
'm6a.32xlarge': { vCpu: 128, memoryGiB: 512 },
'm6a.48xlarge': { vCpu: 192, memoryGiB: 768 },
'm6a.4xlarge': { vCpu: 16, memoryGiB: 64 },
'm6a.8xlarge': { vCpu: 32, memoryGiB: 128 },
'm6a.large': { vCpu: 2, memoryGiB: 8 },
'm6a.xlarge': { vCpu: 4, memoryGiB: 16 },
'm6g.12xlarge': { vCpu: 48, memoryGiB: 192 },
'm6g.16xlarge': { vCpu: 64, memoryGiB: 256 },
'm6g.2xlarge': { vCpu: 8, memoryGiB: 32 },
Expand Down

0 comments on commit 4575091

Please sign in to comment.