elastic-beanstalk 0.2.1 → 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.
- data/README.md +1 -1
- data/lib/elastic/beanstalk/tasks/eb.rake +2 -2
- data/lib/elastic/beanstalk/version.rb +1 -1
- metadata +2 -8
data/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Since [eb_deployer](https://github.com/ThoughtWorksStudios/eb_deployer) is doing
|
|
|
37
37
|
|
|
38
38
|
Given an application named 'acme':
|
|
39
39
|
|
|
40
|
-
### Step 1: Add a ~/.aws
|
|
40
|
+
### Step 1: Add a ~/.aws/acme.yml
|
|
41
41
|
This should contain the access and secret keys generated from the selected IAM user. This is the only file that will need to reside outside the repository.
|
|
42
42
|
|
|
43
43
|
access_key_id: XXXXXX
|
|
@@ -248,7 +248,7 @@ namespace :eb do
|
|
|
248
248
|
end
|
|
249
249
|
end
|
|
250
250
|
|
|
251
|
-
# load from a user directory i.e. ~/.aws
|
|
251
|
+
# load from a user directory i.e. ~/.aws/acme.yml
|
|
252
252
|
def credentials
|
|
253
253
|
# load secrets from the user home directory
|
|
254
254
|
@credentials = YAML::load_file(aws_secrets_file) if @credentials.nil?
|
|
@@ -282,6 +282,6 @@ namespace :eb do
|
|
|
282
282
|
end
|
|
283
283
|
|
|
284
284
|
def aws_secrets_file
|
|
285
|
-
File.expand_path("~/.aws
|
|
285
|
+
File.expand_path("~/.aws/#{EbConfig.app}.yml")
|
|
286
286
|
end
|
|
287
287
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elastic-beanstalk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-09-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -185,18 +185,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
185
185
|
- - ! '>='
|
|
186
186
|
- !ruby/object:Gem::Version
|
|
187
187
|
version: '0'
|
|
188
|
-
segments:
|
|
189
|
-
- 0
|
|
190
|
-
hash: 1192760687848716152
|
|
191
188
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
189
|
none: false
|
|
193
190
|
requirements:
|
|
194
191
|
- - ! '>='
|
|
195
192
|
- !ruby/object:Gem::Version
|
|
196
193
|
version: '0'
|
|
197
|
-
segments:
|
|
198
|
-
- 0
|
|
199
|
-
hash: 1192760687848716152
|
|
200
194
|
requirements: []
|
|
201
195
|
rubyforge_project:
|
|
202
196
|
rubygems_version: 1.8.25
|