Skip to content

Commit

Permalink
fix: update constants (#465)
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 Apr 6, 2022
1 parent 4c77ab6 commit 484389b
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 132 deletions.
2 changes: 2 additions & 0 deletions src/constants/ec2-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'c6a.4xlarge': { vCpu: 16, memoryGiB: 32 },
'c6a.8xlarge': { vCpu: 32, memoryGiB: 64 },
'c6a.large': { vCpu: 2, memoryGiB: 4 },
'c6a.metal': { vCpu: 192, memoryGiB: 384 },
'c6a.xlarge': { vCpu: 4, memoryGiB: 8 },
'c6g.12xlarge': { vCpu: 48, memoryGiB: 96 },
'c6g.16xlarge': { vCpu: 64, memoryGiB: 128 },
Expand Down Expand Up @@ -284,6 +285,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'm6a.4xlarge': { vCpu: 16, memoryGiB: 64 },
'm6a.8xlarge': { vCpu: 32, memoryGiB: 128 },
'm6a.large': { vCpu: 2, memoryGiB: 8 },
'm6a.metal': { vCpu: 192, memoryGiB: 768 },
'm6a.xlarge': { vCpu: 4, memoryGiB: 16 },
'm6g.12xlarge': { vCpu: 48, memoryGiB: 192 },
'm6g.16xlarge': { vCpu: 64, memoryGiB: 256 },
Expand Down
2 changes: 2 additions & 0 deletions src/constants/ec2-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ export const allInstances = [
'm6a.24xlarge',
'm6a.32xlarge',
'm6a.48xlarge',
'm6a.metal',
'm6g.medium',
'm6g.large',
'm6g.xlarge',
Expand Down Expand Up @@ -347,6 +348,7 @@ export const allInstances = [
'c6a.24xlarge',
'c6a.32xlarge',
'c6a.48xlarge',
'c6a.metal',
'c6g.medium',
'c6g.large',
'c6g.xlarge',
Expand Down

0 comments on commit 484389b

Please sign in to comment.