Skip to content

Commit

Permalink
fix: update constants (#912)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonoh committed Sep 10, 2024
1 parent aac59cd commit b0cdd32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/constants/ec2-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,7 @@ export const ec2Info: Record<_InstanceType | string, Ec2InstanceInfo> = {
'p3dn.24xlarge': { vCpu: 96, memoryGiB: 768, architectures: ['x86_64'] },
'p4d.24xlarge': { vCpu: 96, memoryGiB: 1152, architectures: ['x86_64'] },
'p5.48xlarge': { vCpu: 192, memoryGiB: 2048, architectures: ['x86_64'] },
'p5e.48xlarge': { vCpu: 192, memoryGiB: 2048, architectures: ['x86_64'] },
'r3.2xlarge': { vCpu: 8, memoryGiB: 61, architectures: ['x86_64'] },
'r3.4xlarge': { vCpu: 16, memoryGiB: 122, architectures: ['x86_64'] },
'r3.8xlarge': { vCpu: 32, memoryGiB: 244, architectures: ['x86_64'] },
Expand Down
2 changes: 1 addition & 1 deletion src/constants/ec2-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ export const allInstances = [
't3.micro',
't3.small',
't3.medium',
't3.xlarge',
't3.large',
't3.xlarge',
't3.2xlarge',
't3a.nano',
't3a.micro',
Expand Down
4 changes: 2 additions & 2 deletions test/__snapshots__/cli.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Options:
[array] [choices: "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge",
"a1.4xlarge", "a1.metal", "t1.micro", "t2.nano", "t2.micro", "t2.small",
"t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro",
"t3.small", "t3.medium", "t3.xlarge", "t3.large", "t3.2xlarge", "t3a.nano",
"t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano",
"t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge",
"t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium",
"t4g.large", "t4g.xlarge", "t4g.2xlarge", "m1.small", "m1.medium", "m1.large",
Expand Down Expand Up @@ -648,7 +648,7 @@ Options:
[array] [choices: "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge",
"a1.4xlarge", "a1.metal", "t1.micro", "t2.nano", "t2.micro", "t2.small",
"t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro",
"t3.small", "t3.medium", "t3.xlarge", "t3.large", "t3.2xlarge", "t3a.nano",
"t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano",
"t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge",
"t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium",
"t4g.large", "t4g.xlarge", "t4g.2xlarge", "m1.small", "m1.medium", "m1.large",
Expand Down

0 comments on commit b0cdd32

Please sign in to comment.