chef-provisioning-aws 0.5.0 → 1.0.0.rc.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53bc483fc91b2fcab6cd151ed592f8fee9b54617
|
|
4
|
+
data.tar.gz: c3d9da1847b6fd9195d544d4f358612d9dc06a75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aacf84303cdda6e48d0142fcb26d4eaf51f19196178387d7e6a855cd0b7cb7c68297392079084163abe8d51860d0f5678f7da0468650f65603dff54fd3808c6f
|
|
7
|
+
data.tar.gz: 8bb73681825b58932412b9325abae7fd8cc03fa2f1778dc576604f1ad77409682994f64608cbb4dcc36ad36c6a7a974e359bbbb32390bbe977e14c25ab560a53
|
|
@@ -168,7 +168,7 @@ module AWSDriver
|
|
|
168
168
|
desired_subnets_zones[default_subnet[:subnet_id]] = zone
|
|
169
169
|
end
|
|
170
170
|
end
|
|
171
|
-
unless lb_options[:subnets]
|
|
171
|
+
unless lb_options[:subnets].nil? || lb_options[:subnets].empty?
|
|
172
172
|
subnet_query = ec2.client.describe_subnets(:subnet_ids => lb_options[:subnets])[:subnet_set]
|
|
173
173
|
# AWS raises an error on an unknown subnet, but not an unknown AZ
|
|
174
174
|
subnet_query.each do |subnet|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-provisioning-aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0.rc.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Ewart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: chef
|
|
@@ -160,6 +160,7 @@ files:
|
|
|
160
160
|
- lib/chef/resource/aws_sqs_queue.rb
|
|
161
161
|
- lib/chef/resource/aws_subnet.rb
|
|
162
162
|
- lib/chef/resource/aws_vpc.rb
|
|
163
|
+
- spec/acceptance/aws_ebs_volume/nodes/ettores-mbp.lan.json
|
|
163
164
|
- spec/integration/aws_security_group_spec.rb
|
|
164
165
|
- spec/spec_helper.rb
|
|
165
166
|
- spec/support/aws_support.rb
|
|
@@ -178,13 +179,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
178
179
|
version: '0'
|
|
179
180
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
180
181
|
requirements:
|
|
181
|
-
- - "
|
|
182
|
+
- - ">"
|
|
182
183
|
- !ruby/object:Gem::Version
|
|
183
|
-
version:
|
|
184
|
+
version: 1.3.1
|
|
184
185
|
requirements: []
|
|
185
186
|
rubyforge_project:
|
|
186
|
-
rubygems_version: 2.4.
|
|
187
|
+
rubygems_version: 2.4.5
|
|
187
188
|
signing_key:
|
|
188
189
|
specification_version: 4
|
|
189
190
|
summary: Provisioner for creating aws containers in Chef Provisioning.
|
|
190
191
|
test_files: []
|
|
192
|
+
has_rdoc:
|