summaryrefslogtreecommitdiffstats
path: root/cloud.rb
diff options
context:
space:
mode:
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