Skip to content

Commit

Permalink
Add st1 and sc1 volume types to valid types
Browse files Browse the repository at this point in the history
Closes #925
  • Loading branch information
smgoller authored and tonybaloney committed Oct 30, 2016
1 parent 9e5976c commit 41ff326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcloud/compute/drivers/ec2.py
Expand Up @@ -3179,7 +3179,7 @@ def create_volume(self, size, name, location=None, snapshot=None,
:return: The newly created volume.
:rtype: :class:`StorageVolume`
"""
valid_volume_types = ['standard', 'io1', 'gp2']
valid_volume_types = ['standard', 'io1', 'gp2', 'st1', 'sc1']

params = {
'Action': 'CreateVolume',
Expand Down

0 comments on commit 41ff326

Please sign in to comment.