Skip to content

Commit 57d7959

Browse files
authored
Add larger N2 machine types (Ice Lake) and Tau T2D types (#126)
1 parent 2792295 commit 57d7959

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

rules/utils.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ var validMachineTypes = map[string]bool{
3232
"n2-standard-48": true,
3333
"n2-standard-64": true,
3434
"n2-standard-80": true,
35+
"n2-standard-96": true,
36+
"n2-standard-128": true,
3537
"n2-highmem-2": true,
3638
"n2-highmem-4": true,
3739
"n2-highmem-8": true,
@@ -40,6 +42,8 @@ var validMachineTypes = map[string]bool{
4042
"n2-highmem-48": true,
4143
"n2-highmem-64": true,
4244
"n2-highmem-80": true,
45+
"n2-highmem-96": true,
46+
"n2-highmem-128": true,
4347
"n2-highcpu-2": true,
4448
"n2-highcpu-4": true,
4549
"n2-highcpu-8": true,
@@ -48,6 +52,7 @@ var validMachineTypes = map[string]bool{
4852
"n2-highcpu-48": true,
4953
"n2-highcpu-64": true,
5054
"n2-highcpu-80": true,
55+
"n2-highcpu-96": true,
5156
"n2d-standard-2": true,
5257
"n2d-standard-4": true,
5358
"n2d-standard-8": true,
@@ -79,6 +84,14 @@ var validMachineTypes = map[string]bool{
7984
"n2d-highcpu-96": true,
8085
"n2d-highcpu-128": true,
8186
"n2d-highcpu-224": true,
87+
"t2d-standard-1": true,
88+
"t2d-standard-2": true,
89+
"t2d-standard-4": true,
90+
"t2d-standard-8": true,
91+
"t2d-standard-16": true,
92+
"t2d-standard-32": true,
93+
"t2d-standard-48": true,
94+
"t2d-standard-60": true,
8295
"n1-standard-1": true,
8396
"n1-standard-2": true,
8497
"n1-standard-4": true,

0 commit comments

Comments
 (0)