f2y_aws_tool 0.1.8 → 0.1.9
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/bin/f2y-aws-tool +1 -2
- data/lib/f2y_aws_tool/version.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: f941db47f9597614449a5e696875bf9872af2af7
|
|
4
|
+
data.tar.gz: 146411ba51a43a3221b34c5a868585aa2b343584
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc0cfd695c661f50b1a8af39762421a16a7d5a7cb267ebf9cd86605b93e27e2cbc2a76e88e8b321e9edc2c65ed9ef6ed47f3f850598649e56aad39f632e33948
|
|
7
|
+
data.tar.gz: 4f1eb6d28f0a074e86eafae86763851f61f2001e864c49ef72a4eedaf0ad708b792b87220ee70b92c26591954812201d80e59a151094829082c35866dd056b86
|
data/bin/f2y-aws-tool
CHANGED
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
require "bundler/setup"
|
|
3
3
|
require_relative '../lib/f2y_aws_tool'
|
|
4
4
|
require 'thor'
|
|
5
|
-
require 'byebug'
|
|
6
5
|
|
|
7
6
|
class F2yAwsToolCli < Thor
|
|
8
|
-
method_option :target, desc: "Opsworks Target", type: :hash
|
|
7
|
+
method_option :target, desc: "Opsworks Target", type: :hash, banner: "stack_id:STACK app_id:APP_ID"
|
|
9
8
|
|
|
10
9
|
method_option :access_key_id, desc: "AWS Access Key Id", type: :string, default: ENV['AWS_ACCESS_KEY_ID']
|
|
11
10
|
method_option :secret_access_key, desc: "AWS Secret Access Key", type: :string, default: ENV['AWS_SECRET_ACCESS_KEY']
|
data/lib/f2y_aws_tool/version.rb
CHANGED