stalkedbybean 0.2.0 → 0.2.2
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 +5 -5
- data/lib/stalkedbybean/cli.rb +5 -1
- data/lib/stalkedbybean/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 427ded4eb1b24b65f30bca50e35e0927c05d2c52a8358edf88cdf23cb62c8622
|
|
4
|
+
data.tar.gz: 03d1f8c1aef392ac1b846c6fe598db51bc847658236209049f1ce0d1dab4e608
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21b4f0796e1f3ea73d709956b04cea0a415dcbffc4e1296c9c5403a8ee86b05bb5c029b18c0e40d26f924520f8e8855a95f2b6e428855c0b800f4f2e3b27911f
|
|
7
|
+
data.tar.gz: 632e0508e49729a8a83696ca2a8330ccd41257767ffceab890add5d4476e02a688c9be5b015597d3c9d6b6795ac600577bb34093fd11fb445a5ea5e4bc20f5b8
|
data/lib/stalkedbybean/cli.rb
CHANGED
|
@@ -67,7 +67,7 @@ module Stalkedbybean
|
|
|
67
67
|
Stalkedbybean::RoleSetup.setup_IAM
|
|
68
68
|
end
|
|
69
69
|
|
|
70
|
-
desc "provision -v VERSION [OPTIONS]", "Provisions new environment in AWS EB"
|
|
70
|
+
desc "provision -v VERSION [OPTIONS]", "Provisions new environment in AWS EB and sets up roles in AWS IAM"
|
|
71
71
|
method_option :file_path, :type => :string, :aliases => "-f"
|
|
72
72
|
method_option :app_name, :type => :string, :aliases => "-n"
|
|
73
73
|
method_option :aws_profile, :type => :string, :aliases => "-p"
|
|
@@ -83,8 +83,12 @@ module Stalkedbybean
|
|
|
83
83
|
method_option :version, :type => :string, :aliases => "-v"
|
|
84
84
|
method_option :key_name, :type => :string
|
|
85
85
|
method_option :env_vars, :type => :string
|
|
86
|
+
method_option :aws_account_id, :type => :string
|
|
87
|
+
method_option :kms_arn, :type => :string
|
|
86
88
|
def provision
|
|
87
89
|
Stalkedbybean::Provision.parse_options(options[:file_path], options)
|
|
90
|
+
Stalkedbybean::RoleSetup.parse_options(options[:file_path], options)
|
|
91
|
+
Stalkedbybean::RoleSetup.setup_IAM
|
|
88
92
|
Stalkedbybean::Provision.create_environment
|
|
89
93
|
end
|
|
90
94
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stalkedbybean
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kavita Kalaichelvan
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-04-
|
|
12
|
+
date: 2018-04-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -182,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
182
182
|
version: '0'
|
|
183
183
|
requirements: []
|
|
184
184
|
rubyforge_project:
|
|
185
|
-
rubygems_version: 2.
|
|
185
|
+
rubygems_version: 2.7.3
|
|
186
186
|
signing_key:
|
|
187
187
|
specification_version: 4
|
|
188
188
|
summary: Command line utility to deploy Elixir apps to AWS using Elastic Beanstalk
|