From c1ec8a03b9639135fdf97a09033ed64d4fcc51d3 Mon Sep 17 00:00:00 2001 From: George Scott Date: Thu, 15 Mar 2012 17:19:15 -0700 Subject: [PATCH] Added beanstalk service to AWS Provider. --- lib/fog/aws.rb | 1 + lib/fog/bin/aws.rb | 2 ++ 2 files changed, 3 insertions(+) diff --git a/lib/fog/aws.rb b/lib/fog/aws.rb index d35606462..2cc7d5996 100644 --- a/lib/fog/aws.rb +++ b/lib/fog/aws.rb @@ -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') diff --git a/lib/fog/bin/aws.rb b/lib/fog/bin/aws.rb index e52afe76f..a106e4da3 100644 --- a/lib/fog/bin/aws.rb +++ b/lib/fog/bin/aws.rb @@ -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