mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
Merge pull request #1 from ddoc/aws-compute-adding-support-for-c4-instance-class
[aws|compute] adding support for c4 instance class
This commit is contained in:
commit
761f1ce607
1 changed files with 40 additions and 0 deletions
|
@ -155,6 +155,46 @@ module Fog
|
|||
:ebs_optimized_available => false,
|
||||
:instance_store_volumes => 2
|
||||
},
|
||||
{
|
||||
:id => 'c4.large',
|
||||
:name => 'C4 Large',
|
||||
:bits => 64,
|
||||
:cores => 7,
|
||||
:disk => 32,
|
||||
:ram => 3750,
|
||||
:ebs_optimized_available => true,
|
||||
:instance_store_volumes => 2
|
||||
},
|
||||
{
|
||||
:id => 'c4.xlarge',
|
||||
:name => 'C4 Extra Large',
|
||||
:bits => 64,
|
||||
:cores => 14,
|
||||
:disk => 80,
|
||||
:ram => 7168,
|
||||
:ebs_optimized_available => true,
|
||||
:instance_store_volumes => 2
|
||||
},
|
||||
{
|
||||
:id => 'c4.2xlarge',
|
||||
:name => 'C4 Double Extra Large',
|
||||
:bits => 64,
|
||||
:cores => 28,
|
||||
:disk => 160,
|
||||
:ram => 15360,
|
||||
:ebs_optimized_available => true,
|
||||
:instance_store_volumes => 2
|
||||
},
|
||||
{
|
||||
:id => 'c4.4xlarge',
|
||||
:name => 'C4 Quadruple Extra Large',
|
||||
:bits => 64,
|
||||
:cores => 55,
|
||||
:disk => 320,
|
||||
:ram => 30720,
|
||||
:ebs_optimized_available => true,
|
||||
:instance_store_volumes => 2
|
||||
},
|
||||
{
|
||||
:id => 'g2.2xlarge',
|
||||
:name => 'GPU Double Extra Large',
|
||||
|
|
Loading…
Reference in a new issue