aws-ssm-console 0.2.0 → 0.2.1
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/README.md +2 -2
- data/aws-ssm-console.gemspec +1 -1
- data/{bin → exe}/aws-ssm-console +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a457c7e7626a1c1f605a8a24a00148507e060c0
|
|
4
|
+
data.tar.gz: ee6efece68dca5e6b5f3f1d1baf28bb6fb3f6f66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8eb089c82bc940d15f469a6eaf5ce8f6cb72d34f55ebae92b1867fd735ab5c5a7451402ce82ba418f081471e443efe918309d9cfebe69fad77b8fddcf876524
|
|
7
|
+
data.tar.gz: e86305dc655ff6f5d76f0754100bd6f18befcd2b7ff789dbb19cdb5c24dcd74201c7f4e3f3e95edb73a0fda4b9e0467690d6d3f143214a02c80602270ab316f8
|
data/README.md
CHANGED
|
@@ -31,14 +31,14 @@ You should configure some environment variables to use AWS SDK.
|
|
|
31
31
|
#### Interactive mode
|
|
32
32
|
|
|
33
33
|
```
|
|
34
|
-
$
|
|
34
|
+
$ aws-ssm-console --instance-ids=i-xxxx,i-yyyy,...
|
|
35
35
|
>>
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
#### Batch mode
|
|
39
39
|
|
|
40
40
|
```
|
|
41
|
-
$
|
|
41
|
+
$ aws-ssm-console -c ls --instance-ids=i-xxxx,i-yyyy,...
|
|
42
42
|
...
|
|
43
43
|
```
|
|
44
44
|
|
data/aws-ssm-console.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'aws-ssm-console'
|
|
7
|
-
spec.version = '0.2.
|
|
7
|
+
spec.version = '0.2.1'
|
|
8
8
|
spec.authors = ['koshigoe']
|
|
9
9
|
spec.email = ['koshigoeb@gmail.com']
|
|
10
10
|
spec.license = 'MIT'
|
data/{bin → exe}/aws-ssm-console
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-ssm-console
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- koshigoe
|
|
@@ -69,7 +69,8 @@ dependencies:
|
|
|
69
69
|
description: REPL for AWS SSM.
|
|
70
70
|
email:
|
|
71
71
|
- koshigoeb@gmail.com
|
|
72
|
-
executables:
|
|
72
|
+
executables:
|
|
73
|
+
- aws-ssm-console
|
|
73
74
|
extensions: []
|
|
74
75
|
extra_rdoc_files: []
|
|
75
76
|
files:
|
|
@@ -81,9 +82,9 @@ files:
|
|
|
81
82
|
- README.md
|
|
82
83
|
- Rakefile
|
|
83
84
|
- aws-ssm-console.gemspec
|
|
84
|
-
- bin/aws-ssm-console
|
|
85
85
|
- bin/console
|
|
86
86
|
- bin/setup
|
|
87
|
+
- exe/aws-ssm-console
|
|
87
88
|
- lib/aws/ssm/console.rb
|
|
88
89
|
- lib/aws/ssm/console/cli.rb
|
|
89
90
|
- lib/aws/ssm/console/command.rb
|