chef-provisioning-aws 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +9 -2
- data/README.md +37 -1
- data/chef-provisioning-aws.gemspec +5 -15
- data/lib/chef/provider/aws_route_table.rb +1 -0
- data/lib/chef/provisioning/aws_driver/driver.rb +71 -49
- data/lib/chef/provisioning/aws_driver/version.rb +1 -1
- data/spec/integration/machine_spec.rb +24 -3
- metadata +17 -124
- data/spec/acceptance/aws_ebs_volume/nodes/ettores-mbp.lan.json +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12e94cfacfbbc92d49c27bdc107bc6599246b39a
|
4
|
+
data.tar.gz: ff395cba379a2881516696815943869c783a6ba1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1897e28e1eafdf789a7b6bd46a396816d92c54bcd21731f5c1cc9e55698ae9b39fa095f6c1afa420c6a1b9ea059f7948c4c274e0e8ac2e8b7ea9fa00e212dfba
|
7
|
+
data.tar.gz: 50418578ad1dc043236e1dbffe4d15cff384103e0a9295920ce8787986caee96f9705cbf7782a2bb0eeb0a2c920befc4dc66413fd3b5a002cd92d984b44715f6
|
data/Gemfile
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
gemspec
|
3
3
|
|
4
|
+
gem "chef"
|
5
|
+
|
6
|
+
gem "chef-zero", ">= 4.0"
|
7
|
+
gem "rspec", "~> 3.0"
|
8
|
+
gem "rake"
|
9
|
+
gem "pry"
|
10
|
+
gem "pry-byebug"
|
11
|
+
gem "pry-stack_explorer"
|
12
|
+
gem "github_changelog_generator"
|
4
13
|
gem "simplecov"
|
5
|
-
gem "chef", git: "https://github.com/chef/chef" # until Chef 12.14 is released
|
6
|
-
gem "chef-provisioning", git: "https://github.com/chef/chef-provisioning", branch: "jk/bump" # until chef-provisioning 2.0 is released
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Chef Provisioning AWS
|
2
|
+
[![Build Status](https://travis-ci.org/chef/chef-provisioning-aws.svg?branch=master)](https://travis-ci.org/chef/chef-provisioning-aws)[![Gem Version](https://badge.fury.io/rb/chef-provisioning-aws.svg)](https://badge.fury.io/rb/chef-provisioning-aws)
|
2
3
|
|
3
|
-
This README is a work in progress.
|
4
|
+
This README is a work in progress. Feel free to open PRs expanding it!
|
4
5
|
|
5
6
|
# Prerequisites
|
6
7
|
|
@@ -405,6 +406,41 @@ perform [lookup_options](https://github.com/chef/chef-provisioning-aws/blob/mast
|
|
405
406
|
This tries to turn elements with names like `vpc`, `security_group_ids`, `machines`, `launch_configurations`,
|
406
407
|
`load_balancers`, etc. to the correct AWS object.
|
407
408
|
|
409
|
+
# How to update Security Groups for EC2-VPC instances
|
410
|
+
The behavior of the `machine` resource is that once a machine has been allocated,
|
411
|
+
the `bootstrap_options` can not be modified. This currently reflects AWS's
|
412
|
+
restrictions on EC2-Classic instances, but AWS *does* allow users to modify the
|
413
|
+
security groups associated with EC2-VPC instances. This is because the security
|
414
|
+
groups for EC2-VPC instances are _actually_ associated with that instance's
|
415
|
+
Network Interface. This means that if you wish to modify the security groups
|
416
|
+
associated with an EC2-VPC instance, you'll want to use the `aws_network_interface`
|
417
|
+
resource.
|
418
|
+
|
419
|
+
The first step is to find the Network Interface ID (`eni-XXXXXXX`) associated
|
420
|
+
with your machine. You can do this by inspecting the instance details in the AWS
|
421
|
+
Console or by using the AWS CLI. If you want to use the AWS CLI, you can use
|
422
|
+
this command replacing `MACHINE_NAME` with the name of the `machine` resource
|
423
|
+
you wish to update.
|
424
|
+
|
425
|
+
```shell
|
426
|
+
aws ec2 describe-instances --filter "Name=tag:Name,Values=MACHINE_NAME" | grep NetworkInterfaceId
|
427
|
+
```
|
428
|
+
|
429
|
+
Once you have the Network Interface ID, in a chef-provisioning recipe you can
|
430
|
+
specify the following resource:
|
431
|
+
|
432
|
+
```ruby
|
433
|
+
require 'chef/provisioning/aws_driver'
|
434
|
+
with_driver 'aws' # specify the profile / region as appropriate
|
435
|
+
|
436
|
+
aws_network_interface 'eni-XXXXXXXX' do
|
437
|
+
security_groups ['sg-XXXXXXXX', 'sg-YYYYYYYY']
|
438
|
+
end
|
439
|
+
```
|
440
|
+
|
441
|
+
This resource can be in the same chef-provisioning recipe as the corresponding
|
442
|
+
machine resource, or it can be in a different one.
|
443
|
+
|
408
444
|
# Running Integration Tests
|
409
445
|
|
410
446
|
To run the integration tests execute `bundle exec rspec`. If you have not set it up,
|
@@ -8,29 +8,19 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.extra_rdoc_files = ['README.md', 'LICENSE' ]
|
9
9
|
s.summary = 'Provisioner for creating aws containers in Chef Provisioning.'
|
10
10
|
s.description = s.summary
|
11
|
-
s.author = '
|
12
|
-
s.email = '
|
13
|
-
s.homepage = 'https://github.com/
|
11
|
+
s.author = 'Tyler Ball'
|
12
|
+
s.email = 'tball@chef.io'
|
13
|
+
s.homepage = 'https://github.com/chef/chef-provisioning-aws'
|
14
14
|
|
15
|
-
s.required_ruby_version = ">= 2.
|
15
|
+
s.required_ruby_version = ">= 2.1.9"
|
16
16
|
|
17
|
-
s.add_dependency 'chef-provisioning', '
|
17
|
+
s.add_dependency 'chef-provisioning', '>= 1.0', '< 3.0'
|
18
18
|
|
19
19
|
s.add_dependency 'aws-sdk-v1', '>= 1.59.0'
|
20
20
|
s.add_dependency 'aws-sdk', ['>= 2.1.26', '< 3.0']
|
21
21
|
s.add_dependency 'retryable', '~> 2.0', '>= 2.0.1'
|
22
22
|
s.add_dependency 'ubuntu_ami', '~> 0.4', '>= 0.4.1'
|
23
23
|
|
24
|
-
# chef-zero is only a development dependency because we leverage its RSpec support
|
25
|
-
s.add_development_dependency 'chef-zero', '~> 5.0'
|
26
|
-
s.add_development_dependency 'chef', '~> 12.4'
|
27
|
-
s.add_development_dependency 'rspec', '~> 3.0'
|
28
|
-
s.add_development_dependency 'rake'
|
29
|
-
s.add_development_dependency 'pry'
|
30
|
-
s.add_development_dependency 'pry-byebug'
|
31
|
-
s.add_development_dependency 'pry-stack_explorer'
|
32
|
-
s.add_development_dependency 'github_changelog_generator'
|
33
|
-
|
34
24
|
s.bindir = "bin"
|
35
25
|
s.executables = %w( )
|
36
26
|
|
@@ -72,6 +72,7 @@ class Chef::Provider::AwsRouteTable < Chef::Provisioning::AWSDriver::AWSProvider
|
|
72
72
|
current_routes = {}
|
73
73
|
route_table.routes.each do |route|
|
74
74
|
# Ignore the automatic local route
|
75
|
+
next if route.nil?
|
75
76
|
route_target = route.gateway_id || route.nat_gateway_id || route.instance_id || route.network_interface_id || route.vpc_peering_connection_id
|
76
77
|
next if route_target == 'local'
|
77
78
|
next if ignore_route_targets.find { |target| route_target.match(/#{target}/) }
|
@@ -937,6 +937,14 @@ EOD
|
|
937
937
|
'ubuntu'
|
938
938
|
end
|
939
939
|
|
940
|
+
def default_winrm_username
|
941
|
+
'Administrator'
|
942
|
+
end
|
943
|
+
|
944
|
+
def default_winrm_transport
|
945
|
+
'http'
|
946
|
+
end
|
947
|
+
|
940
948
|
def keypair_for(bootstrap_options)
|
941
949
|
if bootstrap_options[:key_name]
|
942
950
|
keypair_name = bootstrap_options[:key_name]
|
@@ -1036,52 +1044,59 @@ EOD
|
|
1036
1044
|
|
1037
1045
|
def create_winrm_transport(machine_spec, machine_options, instance)
|
1038
1046
|
remote_host = determine_remote_host(machine_spec, instance)
|
1039
|
-
username =
|
1047
|
+
username = machine_spec.reference['winrm_username'] ||
|
1048
|
+
machine_options[:winrm_username] ||
|
1049
|
+
default_winrm_username
|
1040
1050
|
# default to http for now, should upgrade to https when knife support self-signed
|
1041
|
-
transport_type =
|
1051
|
+
transport_type = machine_spec.reference['winrm_transport'] ||
|
1052
|
+
machine_options[:winrm_transport] ||
|
1053
|
+
default_winrm_transport
|
1042
1054
|
type = case transport_type
|
1043
1055
|
when 'http'
|
1044
1056
|
:plaintext
|
1045
1057
|
when 'https'
|
1046
1058
|
:ssl
|
1047
1059
|
end
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
end
|
1057
|
-
end
|
1060
|
+
port = machine_spec.reference['winrm_port'] ||
|
1061
|
+
machine_options[:winrm_port] ||
|
1062
|
+
case transport_type
|
1063
|
+
when 'http'
|
1064
|
+
'5985'
|
1065
|
+
when 'https'
|
1066
|
+
'5986'
|
1067
|
+
end
|
1058
1068
|
endpoint = "#{transport_type}://#{remote_host}:#{port}/wsman"
|
1059
1069
|
|
1060
1070
|
pem_bytes = get_private_key(instance.key_name)
|
1061
1071
|
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1072
|
+
password = machine_spec.reference['winrm_password'] ||
|
1073
|
+
machine_options[:winrm_password] ||
|
1074
|
+
begin
|
1075
|
+
if machine_spec.reference['winrm_encrypted_password']
|
1076
|
+
decoded = Base64.decode64(machine_spec.reference['winrm_encrypted_password'])
|
1077
|
+
else
|
1078
|
+
encrypted_admin_password = instance.password_data.password_data
|
1079
|
+
if encrypted_admin_password.nil? || encrypted_admin_password.empty?
|
1080
|
+
raise "You did not specify winrm_password in the machine options and no encrytpted password could be fetched from the instance"
|
1081
|
+
end
|
1082
|
+
machine_spec.reference['winrm_encrypted_password']||=encrypted_admin_password
|
1083
|
+
# ^^ saves encrypted password to the machine_spec
|
1084
|
+
decoded = Base64.decode64(encrypted_admin_password)
|
1085
|
+
end
|
1086
|
+
# decrypt so we can utilize
|
1087
|
+
private_key = OpenSSL::PKey::RSA.new(get_private_key(instance.key_name))
|
1088
|
+
private_key.private_decrypt decoded
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
disable_sspi = machine_spec.reference['winrm_disable_sspi'] ||
|
1092
|
+
machine_options[:winrm_disable_sspi] ||
|
1093
|
+
false # default to Negotiate
|
1094
|
+
basic_auth_only = machine_spec.reference['winrm_basic_auth_only'] ||
|
1095
|
+
machine_options[:winrm_basic_auth_only] ||
|
1096
|
+
false # disallow Basic auth by default
|
1097
|
+
no_ssl_peer_verification = machine_spec.reference['winrm_no_ssl_peer_verification'] ||
|
1098
|
+
machine_options[:winrm_no_ssl_peer_verification] ||
|
1099
|
+
false #disallow MITM potential by default
|
1085
1100
|
|
1086
1101
|
winrm_options = {
|
1087
1102
|
user: username,
|
@@ -1195,37 +1210,44 @@ EOD
|
|
1195
1210
|
end
|
1196
1211
|
end
|
1197
1212
|
|
1198
|
-
def
|
1199
|
-
result = {
|
1200
|
-
# TODO create a user known hosts file
|
1201
|
-
# :user_known_hosts_file => vagrant_ssh_config['UserKnownHostsFile'],
|
1202
|
-
# :paranoid => true,
|
1203
|
-
:auth_methods => [ 'publickey' ],
|
1204
|
-
:keys_only => true,
|
1205
|
-
:host_key_alias => "#{instance.id}.AWS"
|
1206
|
-
}.merge(machine_options[:ssh_options] || {})
|
1213
|
+
def private_key_for(machine_spec, machine_options, instance)
|
1207
1214
|
if instance.respond_to?(:private_key) && instance.private_key
|
1208
|
-
|
1215
|
+
instance.private_key
|
1209
1216
|
elsif instance.respond_to?(:key_name) && instance.key_name
|
1210
1217
|
key = get_private_key(instance.key_name)
|
1211
1218
|
unless key
|
1212
1219
|
raise "Server has key name '#{instance.key_name}', but the corresponding private key was not found locally. Check if the key is in Chef::Config.private_key_paths: #{Chef::Config.private_key_paths.join(', ')}"
|
1213
1220
|
end
|
1214
|
-
|
1221
|
+
key
|
1215
1222
|
elsif machine_spec.reference['key_name']
|
1216
1223
|
key = get_private_key(machine_spec.reference['key_name'])
|
1217
1224
|
unless key
|
1218
1225
|
raise "Server was created with key name '#{machine_spec.reference['key_name']}', but the corresponding private key was not found locally. Check if the key is in Chef::Config.private_key_paths: #{Chef::Config.private_key_paths.join(', ')}"
|
1219
1226
|
end
|
1220
|
-
|
1227
|
+
key
|
1221
1228
|
elsif machine_options[:bootstrap_options] && machine_options[:bootstrap_options][:key_path]
|
1222
|
-
|
1229
|
+
IO.read(machine_options[:bootstrap_options][:key_path])
|
1223
1230
|
elsif machine_options[:bootstrap_options] && machine_options[:bootstrap_options][:key_name]
|
1224
|
-
|
1231
|
+
get_private_key(machine_options[:bootstrap_options][:key_name])
|
1225
1232
|
else
|
1226
1233
|
# TODO make a way to suggest other keys to try ...
|
1227
1234
|
raise "No key found to connect to #{machine_spec.name} (#{machine_spec.reference.inspect})!"
|
1228
1235
|
end
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
def ssh_options_for(machine_spec, machine_options, instance)
|
1239
|
+
result = {
|
1240
|
+
# TODO create a user known hosts file
|
1241
|
+
# :user_known_hosts_file => vagrant_ssh_config['UserKnownHostsFile'],
|
1242
|
+
# :paranoid => true,
|
1243
|
+
:auth_methods => [ 'publickey' ],
|
1244
|
+
:keys_only => true,
|
1245
|
+
:host_key_alias => "#{instance.id}.AWS"
|
1246
|
+
}.merge(machine_options[:ssh_options] || {})
|
1247
|
+
unless result.has_key?(:key_data)
|
1248
|
+
result[:keys_only] = true
|
1249
|
+
result[:key_data] = [ private_key_for(machine_spec, machine_options, instance) ]
|
1250
|
+
end
|
1229
1251
|
result
|
1230
1252
|
end
|
1231
1253
|
|
@@ -407,7 +407,6 @@ describe Chef::Resource::Machine do
|
|
407
407
|
expect(r).to destroy_an_aws_instance('test_machine2')
|
408
408
|
end
|
409
409
|
|
410
|
-
# https://github.com/chef/chef-provisioning-aws/pull/295
|
411
410
|
context "with a custom key" do
|
412
411
|
let(:private_key) {
|
413
412
|
k = OpenSSL::PKey::RSA.new(2048)
|
@@ -415,10 +414,13 @@ describe Chef::Resource::Machine do
|
|
415
414
|
f.write(k.to_pem)
|
416
415
|
k
|
417
416
|
}
|
418
|
-
let(:
|
417
|
+
let(:private_key_pem) {
|
418
|
+
private_key.to_pem
|
419
|
+
}
|
419
420
|
let(:private_key_path) {
|
420
421
|
Pathname.new(ENV['HOME']).join(".ssh", key_pair_name).expand_path
|
421
422
|
}
|
423
|
+
let(:public_key) {private_key.public_key}
|
422
424
|
let(:key_pair_name) { "test_key_pair_#{Random.rand(100)}" }
|
423
425
|
|
424
426
|
before do
|
@@ -439,10 +441,29 @@ describe Chef::Resource::Machine do
|
|
439
441
|
expect_recipe {
|
440
442
|
machine 'test_machine' do
|
441
443
|
machine_options bootstrap_options: {
|
444
|
+
instance_type: 't2.medium',
|
442
445
|
key_name: key_pair_name,
|
443
446
|
key_path: private_key_path
|
444
447
|
}
|
445
|
-
action :
|
448
|
+
action :ready
|
449
|
+
end
|
450
|
+
}.to create_an_aws_instance('test_machine'
|
451
|
+
).and be_idempotent
|
452
|
+
end
|
453
|
+
|
454
|
+
it "uses key_data from the ssh_options", :super_slow do
|
455
|
+
expect_recipe {
|
456
|
+
machine 'test_machine' do
|
457
|
+
machine_options(
|
458
|
+
bootstrap_options: {
|
459
|
+
instance_type: 't2.medium',
|
460
|
+
key_name: key_pair_name
|
461
|
+
},
|
462
|
+
ssh_options: {
|
463
|
+
key_data: [private_key_pem]
|
464
|
+
}
|
465
|
+
)
|
466
|
+
action :ready
|
446
467
|
end
|
447
468
|
}.to create_an_aws_instance('test_machine'
|
448
469
|
).and be_idempotent
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-provisioning-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Tyler Ball
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-provisioning
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '1.0'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3.0'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
29
|
+
version: '1.0'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.0'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: aws-sdk-v1
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,120 +104,8 @@ dependencies:
|
|
98
104
|
- - ">="
|
99
105
|
- !ruby/object:Gem::Version
|
100
106
|
version: 0.4.1
|
101
|
-
- !ruby/object:Gem::Dependency
|
102
|
-
name: chef-zero
|
103
|
-
requirement: !ruby/object:Gem::Requirement
|
104
|
-
requirements:
|
105
|
-
- - "~>"
|
106
|
-
- !ruby/object:Gem::Version
|
107
|
-
version: '5.0'
|
108
|
-
type: :development
|
109
|
-
prerelease: false
|
110
|
-
version_requirements: !ruby/object:Gem::Requirement
|
111
|
-
requirements:
|
112
|
-
- - "~>"
|
113
|
-
- !ruby/object:Gem::Version
|
114
|
-
version: '5.0'
|
115
|
-
- !ruby/object:Gem::Dependency
|
116
|
-
name: chef
|
117
|
-
requirement: !ruby/object:Gem::Requirement
|
118
|
-
requirements:
|
119
|
-
- - "~>"
|
120
|
-
- !ruby/object:Gem::Version
|
121
|
-
version: '12.4'
|
122
|
-
type: :development
|
123
|
-
prerelease: false
|
124
|
-
version_requirements: !ruby/object:Gem::Requirement
|
125
|
-
requirements:
|
126
|
-
- - "~>"
|
127
|
-
- !ruby/object:Gem::Version
|
128
|
-
version: '12.4'
|
129
|
-
- !ruby/object:Gem::Dependency
|
130
|
-
name: rspec
|
131
|
-
requirement: !ruby/object:Gem::Requirement
|
132
|
-
requirements:
|
133
|
-
- - "~>"
|
134
|
-
- !ruby/object:Gem::Version
|
135
|
-
version: '3.0'
|
136
|
-
type: :development
|
137
|
-
prerelease: false
|
138
|
-
version_requirements: !ruby/object:Gem::Requirement
|
139
|
-
requirements:
|
140
|
-
- - "~>"
|
141
|
-
- !ruby/object:Gem::Version
|
142
|
-
version: '3.0'
|
143
|
-
- !ruby/object:Gem::Dependency
|
144
|
-
name: rake
|
145
|
-
requirement: !ruby/object:Gem::Requirement
|
146
|
-
requirements:
|
147
|
-
- - ">="
|
148
|
-
- !ruby/object:Gem::Version
|
149
|
-
version: '0'
|
150
|
-
type: :development
|
151
|
-
prerelease: false
|
152
|
-
version_requirements: !ruby/object:Gem::Requirement
|
153
|
-
requirements:
|
154
|
-
- - ">="
|
155
|
-
- !ruby/object:Gem::Version
|
156
|
-
version: '0'
|
157
|
-
- !ruby/object:Gem::Dependency
|
158
|
-
name: pry
|
159
|
-
requirement: !ruby/object:Gem::Requirement
|
160
|
-
requirements:
|
161
|
-
- - ">="
|
162
|
-
- !ruby/object:Gem::Version
|
163
|
-
version: '0'
|
164
|
-
type: :development
|
165
|
-
prerelease: false
|
166
|
-
version_requirements: !ruby/object:Gem::Requirement
|
167
|
-
requirements:
|
168
|
-
- - ">="
|
169
|
-
- !ruby/object:Gem::Version
|
170
|
-
version: '0'
|
171
|
-
- !ruby/object:Gem::Dependency
|
172
|
-
name: pry-byebug
|
173
|
-
requirement: !ruby/object:Gem::Requirement
|
174
|
-
requirements:
|
175
|
-
- - ">="
|
176
|
-
- !ruby/object:Gem::Version
|
177
|
-
version: '0'
|
178
|
-
type: :development
|
179
|
-
prerelease: false
|
180
|
-
version_requirements: !ruby/object:Gem::Requirement
|
181
|
-
requirements:
|
182
|
-
- - ">="
|
183
|
-
- !ruby/object:Gem::Version
|
184
|
-
version: '0'
|
185
|
-
- !ruby/object:Gem::Dependency
|
186
|
-
name: pry-stack_explorer
|
187
|
-
requirement: !ruby/object:Gem::Requirement
|
188
|
-
requirements:
|
189
|
-
- - ">="
|
190
|
-
- !ruby/object:Gem::Version
|
191
|
-
version: '0'
|
192
|
-
type: :development
|
193
|
-
prerelease: false
|
194
|
-
version_requirements: !ruby/object:Gem::Requirement
|
195
|
-
requirements:
|
196
|
-
- - ">="
|
197
|
-
- !ruby/object:Gem::Version
|
198
|
-
version: '0'
|
199
|
-
- !ruby/object:Gem::Dependency
|
200
|
-
name: github_changelog_generator
|
201
|
-
requirement: !ruby/object:Gem::Requirement
|
202
|
-
requirements:
|
203
|
-
- - ">="
|
204
|
-
- !ruby/object:Gem::Version
|
205
|
-
version: '0'
|
206
|
-
type: :development
|
207
|
-
prerelease: false
|
208
|
-
version_requirements: !ruby/object:Gem::Requirement
|
209
|
-
requirements:
|
210
|
-
- - ">="
|
211
|
-
- !ruby/object:Gem::Version
|
212
|
-
version: '0'
|
213
107
|
description: Provisioner for creating aws containers in Chef Provisioning.
|
214
|
-
email:
|
108
|
+
email: tball@chef.io
|
215
109
|
executables: []
|
216
110
|
extensions: []
|
217
111
|
extra_rdoc_files:
|
@@ -312,7 +206,6 @@ files:
|
|
312
206
|
- lib/chef/resource/aws_subnet.rb
|
313
207
|
- lib/chef/resource/aws_vpc.rb
|
314
208
|
- lib/chef/resource/aws_vpc_peering_connection.rb
|
315
|
-
- spec/acceptance/aws_ebs_volume/nodes/ettores-mbp.lan.json
|
316
209
|
- spec/aws_support.rb
|
317
210
|
- spec/aws_support/aws_resource_run_wrapper.rb
|
318
211
|
- spec/aws_support/deep_matcher.rb
|
@@ -361,7 +254,7 @@ files:
|
|
361
254
|
- spec/unit/chef/provisioning/aws_driver/credentials_spec.rb
|
362
255
|
- spec/unit/chef/provisioning/aws_driver/driver_spec.rb
|
363
256
|
- spec/unit/chef/provisioning/aws_driver/route53_spec.rb
|
364
|
-
homepage: https://github.com/
|
257
|
+
homepage: https://github.com/chef/chef-provisioning-aws
|
365
258
|
licenses: []
|
366
259
|
metadata: {}
|
367
260
|
post_install_message:
|
@@ -372,7 +265,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
372
265
|
requirements:
|
373
266
|
- - ">="
|
374
267
|
- !ruby/object:Gem::Version
|
375
|
-
version: 2.
|
268
|
+
version: 2.1.9
|
376
269
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
377
270
|
requirements:
|
378
271
|
- - ">="
|
@@ -380,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
380
273
|
version: '0'
|
381
274
|
requirements: []
|
382
275
|
rubyforge_project:
|
383
|
-
rubygems_version: 2.
|
276
|
+
rubygems_version: 2.5.1
|
384
277
|
signing_key:
|
385
278
|
specification_version: 4
|
386
279
|
summary: Provisioner for creating aws containers in Chef Provisioning.
|