1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

Merge pull request #440 from AlexLamande/add_g3_flavors

Adding g3 flavors
This commit is contained in:
Wesley Beary 2018-04-16 09:44:17 -05:00 committed by GitHub
commit 8160c040c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -873,6 +873,36 @@ module Fog
:disk => 0,
:ebs_optimized_available => true,
:instance_store_volumes => 0
},
{
:id => 'g3.4xlarge',
:name => 'G3 Quadruple Extra Large',
:bits => 64,
:cores => 16,
:disk => 0,
:ram => 124928,
:ebs_optimized_available => true,
:instance_store_volumes => 0
},
{
:id => 'g3.8xlarge',
:name => 'G3 Octuple Extra Large',
:bits => 64,
:cores => 32,
:disk => 0,
:ram => 249856,
:ebs_optimized_available => true,
:instance_store_volumes => 0
},
{
:id => 'g3.16xlarge',
:name => 'G3 Sixteen Extra Large',
:bits => 64,
:cores => 64,
:disk => 0,
:ram => 499712,
:ebs_optimized_available => true,
:instance_store_volumes => 0
}
]