Skip to content

Commit 70a2876

Browse files
committed
Add Ubuntu 22.04/20.04 to M5dn.xlarge
1 parent d9a0317 commit 70a2876

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dashboard/new-dashboard/src/configurators/MachineConfigurator.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,12 @@ export function getMachineGroupName(machine: string): string {
367367
// https://aws.amazon.com/ec2/instance-types/c6id/
368368
// noinspection SpellCheckingInspection
369369
groupName = "Windows EC2 C6id.4xlarge or i4i.4xlarge (16 vCPU Xeon, 32 or 128 GB)"
370-
} else if (machine.startsWith("intellij-linux-2004-aws-m5d-lt") || machine.startsWith("intellij-linux-2204-aws-m5d-lt")) {
370+
} else if (
371+
machine.startsWith("intellij-linux-2004-aws-m5d-lt") ||
372+
machine.startsWith("intellij-linux-2204-aws-m5d-lt") ||
373+
machine.startsWith("intellij-linux-2004-aws-m5dn-lt") ||
374+
machine.startsWith("intellij-linux-2204-aws-m5dn-lt")
375+
) {
371376
// https://aws.amazon.com/ec2/instance-types/c5/
372377
// noinspection SpellCheckingInspection
373378
groupName = "Linux EC2 M5d.xlarge (4 vCPU Xeon, 16 GB)"

0 commit comments

Comments
 (0)