vagrant-aws 0.7.1 → 0.7.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 +4 -4
- data/README.md +3 -0
- data/lib/vagrant-aws/action/package_instance.rb +1 -2
- data/lib/vagrant-aws/action/run_instance.rb +0 -1
- data/lib/vagrant-aws/provider.rb +2 -2
- data/lib/vagrant-aws/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: 1da36de14003d06dc19ffa81fc91127c9c25c8ab
|
4
|
+
data.tar.gz: 6ee7b9253534b488ee9cb10202d5b2a9725d96e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7357c5aa833b2e484c1dab790c7de0803f3b69600e2685d9da162b410f895e07f6bcd5ee8099f0b0c8d95e59aa9dd249749344efec2e4ad30054ad6d28c6eea7
|
7
|
+
data.tar.gz: 74cf20ab398d249a61e4b4ae758216c5f4d19fa5844b4be6a6dffba5fc87e23638c8e0830c019d52999009ff4654316e7623e1e93f105452db75ac583621d64e
|
data/README.md
CHANGED
@@ -182,6 +182,9 @@ Vagrant.configure("2") do |config|
|
|
182
182
|
end
|
183
183
|
```
|
184
184
|
|
185
|
+
Note that you do not have to hard code your `aws.access_key_id` or `aws.secret_access_key`
|
186
|
+
as they will be retrieved from the enviornment variables `AWS_ACCESS_KEY` and `AWS_SECRET_KEY`.
|
187
|
+
|
185
188
|
In addition to the above top-level configs, you can use the `region_config`
|
186
189
|
method to specify region-specific overrides within your Vagrantfile. Note
|
187
190
|
that the top-level `region` config must always be specified to choose which
|
@@ -25,10 +25,9 @@ module VagrantPlugins
|
|
25
25
|
include Vagrant::Util::Retryable
|
26
26
|
|
27
27
|
def initialize(app, env)
|
28
|
-
|
28
|
+
super
|
29
29
|
@logger = Log4r::Logger.new("vagrant_aws::action::package_instance")
|
30
30
|
env["package.include"] ||= []
|
31
|
-
env["package.output"] ||= "package.box"
|
32
31
|
end
|
33
32
|
|
34
33
|
alias_method :general_call, :call
|
data/lib/vagrant-aws/provider.rb
CHANGED
@@ -21,7 +21,7 @@ module VagrantPlugins
|
|
21
21
|
# Run a custom action called "read_ssh_info" which does what it
|
22
22
|
# says and puts the resulting SSH info into the `:machine_ssh_info`
|
23
23
|
# key in the environment.
|
24
|
-
env = @machine.action("read_ssh_info")
|
24
|
+
env = @machine.action("read_ssh_info", lock: false)
|
25
25
|
env[:machine_ssh_info]
|
26
26
|
end
|
27
27
|
|
@@ -29,7 +29,7 @@ module VagrantPlugins
|
|
29
29
|
# Run a custom action we define called "read_state" which does
|
30
30
|
# what it says. It puts the state in the `:machine_state_id`
|
31
31
|
# key in the environment.
|
32
|
-
env = @machine.action("read_state")
|
32
|
+
env = @machine.action("read_state", lock: false)
|
33
33
|
|
34
34
|
state_id = env[:machine_state_id]
|
35
35
|
|
data/lib/vagrant-aws/version.rb
CHANGED