ec2-ssh 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ec2-ssh/cli.rb +1 -1
- data/lib/ec2-ssh.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8168af1501cc0643e43963625e266952a5172fe7
|
4
|
+
data.tar.gz: 91e9b473285a1e34bff1f146406ffe15a23311f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e939f79353b3e65ea1aa154deae31c40a9b03d6885f8eb77663f25c279bc2b3b17b829da68acc9a4207bfaf09bdb77839304dc64f8f7af7f0dd218f3af52590
|
7
|
+
data.tar.gz: dbdb11cc3686aa6f1f1833570bd08edcb79a6afb60365bfa86f668725bdbd36f3e64f083819eadc70aea8e47999bee3ea1eafddba4f758cdf43f237542c4aafb
|
data/lib/ec2-ssh/cli.rb
CHANGED
@@ -18,7 +18,7 @@ class Ec2Ssh::Cli < Thor
|
|
18
18
|
|
19
19
|
desc "connect", "Connect to autoscale instance (random instance), Pass --cmd='whatever' to run a cmd on the server (use ; to seperate commands)"
|
20
20
|
method_option :cmd, :desc => 'commmand to run on remote servers'
|
21
|
-
method_option :profile, :desc => '
|
21
|
+
method_option :profile, :desc => 'Aws cli profile name as listed in ~/aws/credentials', :default => 'default'
|
22
22
|
method_option :region, :desc => "region", :default => 'us-east-1'
|
23
23
|
method_option :user, :aliases => 'u', :desc => 'run as user', :default => 'ec2-user'
|
24
24
|
method_option :parallel, :aliases => 'p', :desc => 'run in parallel'
|
data/lib/ec2-ssh.rb
CHANGED