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

Added beanstalk service to AWS Provider.

This commit is contained in:
George Scott 2012-03-15 17:19:15 -07:00
parent 965fd66d2e
commit c1ec8a03b9
2 changed files with 3 additions and 0 deletions

View file

@ -6,6 +6,7 @@ module Fog
extend Fog::Provider
service(:auto_scaling, 'aws/auto_scaling', 'AutoScaling')
service(:beanstalk, 'aws/beanstalk', 'ElasticBeanstalk')
service(:cdn, 'aws/cdn', 'CDN')
service(:compute, 'aws/compute', 'Compute')
service(:cloud_formation, 'aws/cloud_formation', 'CloudFormation')

View file

@ -5,6 +5,8 @@ class AWS < Fog::Bin
case key
when :auto_scaling
Fog::AWS::AutoScaling
when :beanstalk
Fog::AWS::ElasticBeanstalk
when :cdn
Fog::CDN::AWS
when :cloud_formation