summaryrefslogtreecommitdiffstats
path: root/cloud.rb
diff options
context:
space:
mode:
authorThomas Wiest <twiest@redhat.com>2014-10-22 11:12:46 -0400
committerThomas Wiest <twiest@redhat.com>2014-10-23 12:51:52 -0400
commit5f9c7eb2d2ad44776d33197857dcd0afe693b5f5 (patch)
tree22a39c5589aa3f6a2a01f185041258e4fd69dea6 /cloud.rb
parent1057c69acdaf47e2bcd4b395069e3bc1bd9eec88 (diff)
downloadopenshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.gz
openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.bz2
openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.xz
openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.zip
Added atomic aws host to cloud.rb
Diffstat (limited to 'cloud.rb')
-rwxr-xr-xcloud.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/cloud.rb b/cloud.rb
index b7ec0790c..934066662 100755
--- a/cloud.rb
+++ b/cloud.rb
@@ -2,6 +2,7 @@
require 'thor'
require_relative 'lib/gce_command'
+require_relative 'lib/aws_command'
# Don't buffer output to the client
STDOUT.sync = true
@@ -12,6 +13,9 @@ module OpenShift
class CloudCommand < Thor
desc 'gce', 'Manages Google Compute Engine assets'
subcommand "gce", GceCommand
+
+ desc 'aws', 'Manages Amazon Web Services assets'
+ subcommand "aws", AwsCommand
end
end
end