File tree 1 file changed +58
-0
lines changed
upup/pkg/fi/cloudup/awsup
1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,64 @@ var MachineTypes []AWSMachineTypeInfo = []AWSMachineTypeInfo{
132
132
Burstable : true ,
133
133
},
134
134
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
+
135
193
// m3 family
136
194
{
137
195
Name : "m3.medium" ,
You can’t perform that action at this time.
0 commit comments