vagrant-aws 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7dc5ac6ea70ec0fa3aaf489a3062a5ca91724ea2
4
- data.tar.gz: cd91ea76e3f967df83caa7f72ae41fb5741a0129
3
+ metadata.gz: 1da36de14003d06dc19ffa81fc91127c9c25c8ab
4
+ data.tar.gz: 6ee7b9253534b488ee9cb10202d5b2a9725d96e3
5
5
  SHA512:
6
- metadata.gz: 7a30093a3a0a08781d22a13b2074a4908a5839ef69aaa0bf582d8ad5a1c0cd25afe1eaa3448e4451be5769d3ad8ba402625dc93fb26dd4b7fc0f80b03feb3ea4
7
- data.tar.gz: c144f841a06d5222dabeca1a4f58cc71b23e4633b232d65a051d222cd1c4df79f20cb3a92d94062003e02840f27c1ab5d2edbbcf762bc0f40ba279e803bd09e9
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
- @app = app
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
@@ -97,7 +97,6 @@ module VagrantPlugins
97
97
  :ebs_optimized => ebs_optimized,
98
98
  :associate_public_ip => associate_public_ip,
99
99
  :kernel_id => kernel_id,
100
- :associate_public_ip => associate_public_ip,
101
100
  :tenancy => tenancy
102
101
  }
103
102
 
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module AWS
3
- VERSION = '0.7.1'
3
+ VERSION = '0.7.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto