aboutsummaryrefslogtreecommitdiff
path: root/ec2
diff options
context:
space:
mode:
Diffstat (limited to 'ec2')
-rwxr-xr-xec2/spark_ec2.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py
index 44775ea479..02cfe4ec39 100755
--- a/ec2/spark_ec2.py
+++ b/ec2/spark_ec2.py
@@ -240,7 +240,10 @@ def get_spark_ami(opts):
"r3.xlarge": "hvm",
"r3.2xlarge": "hvm",
"r3.4xlarge": "hvm",
- "r3.8xlarge": "hvm"
+ "r3.8xlarge": "hvm",
+ "t2.micro": "hvm",
+ "t2.small": "hvm",
+ "t2.medium": "hvm"
}
if opts.instance_type in instance_types:
instance_type = instance_types[opts.instance_type]