Skip to content

Commit

Permalink
fix: update constants (#626)
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 Mar 22, 2023
1 parent 5a2510e commit 39fcf12
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 148 deletions.
5 changes: 5 additions & 0 deletions src/constants/ec2-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'c6in.4xlarge': { vCpu: 16, memoryGiB: 32 },
'c6in.8xlarge': { vCpu: 32, memoryGiB: 64 },
'c6in.large': { vCpu: 2, memoryGiB: 4 },
'c6in.metal': { vCpu: 128, memoryGiB: 256 },
'c6in.xlarge': { vCpu: 4, memoryGiB: 8 },
'c7g.12xlarge': { vCpu: 48, memoryGiB: 96 },
'c7g.16xlarge': { vCpu: 64, memoryGiB: 128 },
Expand Down Expand Up @@ -369,6 +370,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'm6idn.4xlarge': { vCpu: 16, memoryGiB: 64 },
'm6idn.8xlarge': { vCpu: 32, memoryGiB: 128 },
'm6idn.large': { vCpu: 2, memoryGiB: 8 },
'm6idn.metal': { vCpu: 128, memoryGiB: 512 },
'm6idn.xlarge': { vCpu: 4, memoryGiB: 16 },
'm6in.12xlarge': { vCpu: 48, memoryGiB: 192 },
'm6in.16xlarge': { vCpu: 64, memoryGiB: 256 },
Expand All @@ -378,6 +380,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'm6in.4xlarge': { vCpu: 16, memoryGiB: 64 },
'm6in.8xlarge': { vCpu: 32, memoryGiB: 128 },
'm6in.large': { vCpu: 2, memoryGiB: 8 },
'm6in.metal': { vCpu: 128, memoryGiB: 512 },
'm6in.xlarge': { vCpu: 4, memoryGiB: 16 },
'm7g.12xlarge': { vCpu: 48, memoryGiB: 192 },
'm7g.16xlarge': { vCpu: 64, memoryGiB: 256 },
Expand Down Expand Up @@ -527,6 +530,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'r6idn.4xlarge': { vCpu: 16, memoryGiB: 128 },
'r6idn.8xlarge': { vCpu: 32, memoryGiB: 256 },
'r6idn.large': { vCpu: 2, memoryGiB: 16 },
'r6idn.metal': { vCpu: 128, memoryGiB: 1024 },
'r6idn.xlarge': { vCpu: 4, memoryGiB: 32 },
'r6in.12xlarge': { vCpu: 48, memoryGiB: 384 },
'r6in.16xlarge': { vCpu: 64, memoryGiB: 512 },
Expand All @@ -536,6 +540,7 @@ export const ec2Info: Record<InstanceType | string, Ec2InstanceInfo> = {
'r6in.4xlarge': { vCpu: 16, memoryGiB: 128 },
'r6in.8xlarge': { vCpu: 32, memoryGiB: 256 },
'r6in.large': { vCpu: 2, memoryGiB: 16 },
'r6in.metal': { vCpu: 128, memoryGiB: 1024 },
'r6in.xlarge': { vCpu: 4, memoryGiB: 32 },
'r7g.12xlarge': { vCpu: 48, memoryGiB: 384 },
'r7g.16xlarge': { vCpu: 64, memoryGiB: 512 },
Expand Down
5 changes: 5 additions & 0 deletions src/constants/ec2-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ export const allInstances = [
'm6idn.16xlarge',
'm6idn.24xlarge',
'm6idn.32xlarge',
'm6idn.metal',
'm6in.large',
'm6in.xlarge',
'm6in.2xlarge',
Expand All @@ -327,6 +328,7 @@ export const allInstances = [
'm6in.16xlarge',
'm6in.24xlarge',
'm6in.32xlarge',
'm6in.metal',
'm7g.medium',
'm7g.large',
'm7g.xlarge',
Expand Down Expand Up @@ -455,6 +457,7 @@ export const allInstances = [
'c6in.16xlarge',
'c6in.24xlarge',
'c6in.32xlarge',
'c6in.metal',
'c7g.medium',
'c7g.large',
'c7g.xlarge',
Expand Down Expand Up @@ -594,6 +597,7 @@ export const allInstances = [
'r6idn.16xlarge',
'r6idn.24xlarge',
'r6idn.32xlarge',
'r6idn.metal',
'r6in.large',
'r6in.xlarge',
'r6in.2xlarge',
Expand All @@ -603,6 +607,7 @@ export const allInstances = [
'r6in.16xlarge',
'r6in.24xlarge',
'r6in.32xlarge',
'r6in.metal',
'r7g.medium',
'r7g.large',
'r7g.xlarge',
Expand Down
Loading

0 comments on commit 39fcf12

Please sign in to comment.