Skip to content

Commit ca3ad3d

Browse files
authoredAug 22, 2018
Update machine_types.go
1 parent 0711d4f commit ca3ad3d

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed
 

‎upup/pkg/fi/cloudup/awsup/machine_types.go

+58
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,64 @@ var MachineTypes []AWSMachineTypeInfo = []AWSMachineTypeInfo{
132132
Burstable: true,
133133
},
134134

135+
// t3 family
136+
{
137+
Name: "t3.nano",
138+
MemoryGB: 0.5,
139+
ECU: 6 * BurstableCreditsToECUS,
140+
Cores: 2,
141+
EphemeralDisks: nil,
142+
Burstable: true,
143+
},
144+
{
145+
Name: "t3.micro",
146+
MemoryGB: 1,
147+
ECU: 12 * BurstableCreditsToECUS,
148+
Cores: 2,
149+
EphemeralDisks: nil,
150+
Burstable: true,
151+
},
152+
{
153+
Name: "t3.small",
154+
MemoryGB: 2,
155+
ECU: 24 * BurstableCreditsToECUS,
156+
Cores: 2,
157+
EphemeralDisks: nil,
158+
Burstable: true,
159+
},
160+
{
161+
Name: "t3.medium",
162+
MemoryGB: 4,
163+
ECU: 24 * BurstableCreditsToECUS,
164+
Cores: 2,
165+
EphemeralDisks: nil,
166+
Burstable: true,
167+
},
168+
{
169+
Name: "t3.large",
170+
MemoryGB: 8,
171+
ECU: 36 * BurstableCreditsToECUS,
172+
Cores: 2,
173+
EphemeralDisks: nil,
174+
Burstable: true,
175+
},
176+
{
177+
Name: "t3.xlarge",
178+
MemoryGB: 16,
179+
ECU: 96 * BurstableCreditsToECUS,
180+
Cores: 4,
181+
EphemeralDisks: nil,
182+
Burstable: true,
183+
},
184+
{
185+
Name: "t3.2xlarge",
186+
MemoryGB: 32,
187+
ECU: 192 * BurstableCreditsToECUS,
188+
Cores: 8,
189+
EphemeralDisks: nil,
190+
Burstable: true,
191+
},
192+
135193
// m3 family
136194
{
137195
Name: "m3.medium",

0 commit comments

Comments
 (0)
Please sign in to comment.