chef-provisioning-aws 3.0.2 → 3.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +0 -1
- data/Rakefile +0 -10
- data/lib/chef/provider/aws_route_table.rb +5 -5
- data/lib/chef/provider/aws_security_group.rb +2 -2
- data/lib/chef/provisioning/aws_driver/driver.rb +1 -1
- data/lib/chef/provisioning/aws_driver/version.rb +1 -1
- data/lib/chef/resource/aws_dhcp_options.rb +1 -1
- data/lib/chef/resource/aws_ebs_volume.rb +1 -1
- data/lib/chef/resource/aws_image.rb +1 -1
- data/lib/chef/resource/aws_instance.rb +1 -1
- data/lib/chef/resource/aws_internet_gateway.rb +1 -1
- data/lib/chef/resource/aws_load_balancer.rb +1 -1
- data/lib/chef/resource/aws_nat_gateway.rb +1 -1
- data/lib/chef/resource/aws_network_acl.rb +1 -1
- data/lib/chef/resource/aws_network_interface.rb +1 -1
- data/lib/chef/resource/aws_route53_record_set.rb +1 -1
- data/lib/chef/resource/aws_route_table.rb +1 -1
- data/lib/chef/resource/aws_security_group.rb +1 -1
- data/lib/chef/resource/aws_subnet.rb +1 -1
- data/lib/chef/resource/aws_vpc.rb +1 -1
- data/lib/chef/resource/aws_vpc_peering_connection.rb +1 -1
- data/spec/integration/machine_batch_spec.rb +36 -1
- metadata +3 -4
- data/spec/persistence_file.txt +0 -219
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 52266dc010958b6e3dab75f246cc0938958a36354134532db7edd5a6faa46410
|
4
|
+
data.tar.gz: 26e30d909b1abf07bebf4aabbed65e0360096d6cbe7810cbd3621ff177a09ff4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa7f78ca5df5bfffc74cf5e61bf796f91e8349e3909926e2437af70fad01cf6d693fa083ddbc0ff33aeafd271df851986add1be6b9a32ee94c0554e0505a1f23
|
7
|
+
data.tar.gz: 4ab0fd175ec409e06787b1a04adaa6939a635fee8ec4e9b36ac9841638efc3eb2de273686b0b232a936316fd4679b68ea840d997d394cb4c3489a63709203367
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -52,13 +52,3 @@ RSpec::Core::RakeTask.new(:machine_image) do |spec|
|
|
52
52
|
spec.pattern = "spec/integration/machine_image_spec.rb"
|
53
53
|
spec.rspec_opts = "-b -t super_slow -e 'machine_image can create an image in the VPC'"
|
54
54
|
end
|
55
|
-
|
56
|
-
require "chef/provisioning/aws_driver/version"
|
57
|
-
require "github_changelog_generator/task"
|
58
|
-
|
59
|
-
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
60
|
-
config.future_release = Chef::Provisioning::AWSDriver::VERSION
|
61
|
-
config.enhancement_labels = "enhancement,Enhancement,New Feature".split(",")
|
62
|
-
config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
|
63
|
-
config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog".split(",")
|
64
|
-
end
|
@@ -139,15 +139,15 @@ class Chef::Provider::AwsRouteTable < Chef::Provisioning::AWSDriver::AWSProvider
|
|
139
139
|
raise "VPC #{new_resource.vpc} (#{vpc.id}) does not have an internet gateway to route to! Use `internet_gateway true` on the VPC itself to create one."
|
140
140
|
end
|
141
141
|
route_target = { internet_gateway: vpc.internet_gateways.first.id }
|
142
|
-
when /^igw-[A-Fa-f0-9]
|
142
|
+
when /^igw-[A-Fa-f0-9]+$/, Chef::Resource::AwsInternetGateway, ::Aws::EC2::InternetGateway
|
143
143
|
route_target = { internet_gateway: route_target }
|
144
|
-
when /^nat-[A-Fa-f0-9]
|
144
|
+
when /^nat-[A-Fa-f0-9]+$/, Chef::Resource::AwsNatGateway, ::Aws::EC2::NatGateway
|
145
145
|
route_target = { nat_gateway: route_target }
|
146
|
-
when /^eni-[A-Fa-f0-9]
|
146
|
+
when /^eni-[A-Fa-f0-9]+$/, Chef::Resource::AwsNetworkInterface, ::Aws::EC2::NetworkInterface
|
147
147
|
route_target = { network_interface: route_target }
|
148
|
-
when /^pcx-[A-Fa-f0-9]
|
148
|
+
when /^pcx-[A-Fa-f0-9]+$/, Chef::Resource::AwsVpcPeeringConnection, ::Aws::EC2::VpcPeeringConnection
|
149
149
|
route_target = { vpc_peering_connection: route_target }
|
150
|
-
when /^vgw-[A-Fa-f0-9]
|
150
|
+
when /^vgw-[A-Fa-f0-9]+$/
|
151
151
|
route_target = { virtual_private_gateway: route_target }
|
152
152
|
when String, Chef::Resource::AwsInstance
|
153
153
|
route_target = { instance: route_target }
|
@@ -444,7 +444,7 @@ class Chef::Provider::AwsSecurityGroup < Chef::Provisioning::AWSDriver::AWSProvi
|
|
444
444
|
end
|
445
445
|
|
446
446
|
# If a load balancer is specified, grab it and then get its automatic security group
|
447
|
-
when /^elb-[a-fA-F0-9]
|
447
|
+
when /^elb-[a-fA-F0-9]+$/, Aws::ElasticLoadBalancing::Types::LoadBalancerDescription, Chef::Resource::AwsLoadBalancer
|
448
448
|
lb=actor_spec
|
449
449
|
if lb.class != Aws::ElasticLoadBalancing::Types::LoadBalancerDescription
|
450
450
|
lb = Chef::Resource::AwsLoadBalancer.get_aws_object(actor_spec, resource: new_resource)
|
@@ -459,7 +459,7 @@ class Chef::Provider::AwsSecurityGroup < Chef::Provisioning::AWSDriver::AWSProvi
|
|
459
459
|
end
|
460
460
|
|
461
461
|
# If a security group is specified, grab it
|
462
|
-
when /^sg-[a-fA-F0-9]
|
462
|
+
when /^sg-[a-fA-F0-9]+$/, ::Aws::EC2::SecurityGroup, Chef::Resource::AwsSecurityGroup
|
463
463
|
Chef::Resource::AwsSecurityGroup.get_aws_object(actor_spec, resource: new_resource)
|
464
464
|
|
465
465
|
# If an IP addresses / CIDR are passed, return it verbatim; otherwise, assume it's the
|
@@ -69,7 +69,7 @@ class Provider
|
|
69
69
|
# We override this so we can specify a machine name as `i-123456`
|
70
70
|
# This is totally a hack until we move away from base resources
|
71
71
|
def get_machine_spec!(machine_name)
|
72
|
-
if machine_name =~ /^i-[0-9a-f]
|
72
|
+
if machine_name =~ /^i-[0-9a-f]+/
|
73
73
|
Struct.new(:name, :reference).new(machine_name, {'instance_id' => machine_name})
|
74
74
|
else
|
75
75
|
Chef::Log.debug "Getting machine spec for #{machine_name}"
|
@@ -48,7 +48,7 @@ class Chef::Resource::AwsDhcpOptions < Chef::Provisioning::AWSDriver::AWSResourc
|
|
48
48
|
attribute :netbios_node_type, kind_of: Integer
|
49
49
|
|
50
50
|
attribute :dhcp_options_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
51
|
-
name =~ /^dopt-[a-f0-9]
|
51
|
+
name =~ /^dopt-[a-f0-9]+$/ ? name : nil
|
52
52
|
}
|
53
53
|
|
54
54
|
def aws_object
|
@@ -20,7 +20,7 @@ class Chef::Resource::AwsEbsVolume < Chef::Provisioning::AWSDriver::AWSResourceW
|
|
20
20
|
attribute :device, kind_of: String
|
21
21
|
|
22
22
|
attribute :volume_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
23
|
-
name =~ /^vol-
|
23
|
+
name =~ /^vol-[a-f0-9]+$/ ? name : nil
|
24
24
|
}
|
25
25
|
|
26
26
|
def aws_object
|
@@ -11,7 +11,7 @@ class Chef::Resource::AwsImage < Chef::Provisioning::AWSDriver::AWSResourceWithE
|
|
11
11
|
attribute :name, kind_of: String, name_attribute: true
|
12
12
|
|
13
13
|
attribute :image_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
14
|
-
name =~ /^ami-[a-f0-9]
|
14
|
+
name =~ /^ami-[a-f0-9]+$/ ? name : nil
|
15
15
|
}
|
16
16
|
|
17
17
|
def aws_object
|
@@ -13,7 +13,7 @@ class Chef::Resource::AwsInstance < Chef::Provisioning::AWSDriver::AWSResourceWi
|
|
13
13
|
attribute :name, kind_of: String, name_attribute: true
|
14
14
|
|
15
15
|
attribute :instance_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
16
|
-
name =~ /^i-
|
16
|
+
name =~ /^i-[a-f0-9]+$/ ? name : nil
|
17
17
|
}
|
18
18
|
|
19
19
|
def aws_object
|
@@ -37,7 +37,7 @@ class Chef::Resource::AwsInternetGateway < Chef::Provisioning::AWSDriver::AWSRes
|
|
37
37
|
attribute :vpc, kind_of: [ String, AwsVpc, ::Aws::EC2::Vpc ]
|
38
38
|
|
39
39
|
attribute :internet_gateway_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
40
|
-
name =~ /^igw-[a-f0-9]
|
40
|
+
name =~ /^igw-[a-f0-9]+$/ ? name : nil
|
41
41
|
}
|
42
42
|
|
43
43
|
def aws_object
|
@@ -9,7 +9,7 @@ class Chef::Resource::AwsLoadBalancer < Chef::Provisioning::AWSDriver::AWSResour
|
|
9
9
|
attribute :name, kind_of: String, name_attribute: true
|
10
10
|
|
11
11
|
attribute :load_balancer_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
12
|
-
name =~ /^elb-[a-f0-9]
|
12
|
+
name =~ /^elb-[a-f0-9]+$/ ? name : nil
|
13
13
|
}
|
14
14
|
|
15
15
|
def aws_object
|
@@ -87,7 +87,7 @@ class Chef::Resource::AwsNatGateway < Chef::Provisioning::AWSDriver::AWSResource
|
|
87
87
|
attribute :eip_address, kind_of: [ String, ::Aws::OpsWorks::Types::ElasticIp, AwsEipAddress, nil ], default: nil
|
88
88
|
|
89
89
|
attribute :nat_gateway_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
90
|
-
name =~ /^nat-[A-Fa-f0-9]
|
90
|
+
name =~ /^nat-[A-Fa-f0-9]+$/ ? name : nil
|
91
91
|
}
|
92
92
|
|
93
93
|
def aws_object
|
@@ -10,7 +10,7 @@ class Chef::Resource::AwsNetworkInterface < Chef::Provisioning::AWSDriver::AWSRe
|
|
10
10
|
attribute :name, kind_of: String, name_attribute: true
|
11
11
|
|
12
12
|
attribute :network_interface_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
13
|
-
name =~ /^eni-[a-f0-9]
|
13
|
+
name =~ /^eni-[a-f0-9]+$/ ? name : nil
|
14
14
|
}
|
15
15
|
|
16
16
|
attribute :subnet, kind_of: [ String, ::Aws::EC2::Subnet, AwsSubnet ]
|
@@ -45,7 +45,7 @@ class Chef::Resource::AwsRoute53RecordSet < Chef::Provisioning::AWSDriver::Super
|
|
45
45
|
|
46
46
|
attribute :type, equal_to: %w(SOA A TXT NS CNAME MX PTR SRV SPF AAAA), required: true
|
47
47
|
|
48
|
-
attribute :ttl, kind_of:
|
48
|
+
attribute :ttl, kind_of: Integer, required: true
|
49
49
|
|
50
50
|
attribute :resource_records, kind_of: Array, required: true
|
51
51
|
|
@@ -93,7 +93,7 @@ class Chef::Resource::AwsRouteTable < Chef::Provisioning::AWSDriver::AWSResource
|
|
93
93
|
coerce: proc { |v| [v].flatten }
|
94
94
|
|
95
95
|
attribute :route_table_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
96
|
-
name =~ /^rtb-[a-f0-9]
|
96
|
+
name =~ /^rtb-[a-f0-9]+$/ ? name : nil
|
97
97
|
}
|
98
98
|
|
99
99
|
def aws_object
|
@@ -50,7 +50,7 @@ class Chef::Resource::AwsSecurityGroup < Chef::Provisioning::AWSDriver::AWSResou
|
|
50
50
|
attribute :outbound_rules, kind_of: [ Array, Hash ]
|
51
51
|
|
52
52
|
attribute :security_group_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
53
|
-
name =~ /^sg-[a-f0-9]
|
53
|
+
name =~ /^sg-[a-f0-9]+$/ ? name : nil
|
54
54
|
}
|
55
55
|
|
56
56
|
def aws_object
|
@@ -87,7 +87,7 @@ class Chef::Resource::AwsSubnet < Chef::Provisioning::AWSDriver::AWSResourceWith
|
|
87
87
|
attribute :network_acl, kind_of: [ String, AwsNetworkAcl, ::Aws::EC2::NetworkAcl ]
|
88
88
|
|
89
89
|
attribute :subnet_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
90
|
-
name =~ /^subnet-[a-f0-9]
|
90
|
+
name =~ /^subnet-[a-f0-9]+$/ ? name : nil
|
91
91
|
}
|
92
92
|
|
93
93
|
def aws_object
|
@@ -128,7 +128,7 @@ class Chef::Resource::AwsVpc < Chef::Provisioning::AWSDriver::AWSResourceWithEnt
|
|
128
128
|
attribute :enable_dns_hostnames, equal_to: [ true, false ]
|
129
129
|
|
130
130
|
attribute :vpc_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
131
|
-
name =~ /^vpc-[a-f0-9]
|
131
|
+
name =~ /^vpc-[a-f0-9]+$/ ? name : nil
|
132
132
|
}
|
133
133
|
|
134
134
|
def aws_object
|
@@ -55,7 +55,7 @@ class Chef::Resource::AwsVpcPeeringConnection < Chef::Provisioning::AWSDriver::A
|
|
55
55
|
attribute :peer_owner_id, kind_of: String
|
56
56
|
|
57
57
|
attribute :vpc_peering_connection_id, kind_of: String, aws_id_attribute: true, default: lazy {
|
58
|
-
name =~ /^pcx-[a-f0-9]
|
58
|
+
name =~ /^pcx-[a-f0-9]+$/ ? name : nil
|
59
59
|
}
|
60
60
|
|
61
61
|
def aws_object
|
@@ -12,16 +12,27 @@ describe Chef::Resource::MachineBatch do
|
|
12
12
|
|
13
13
|
purge_all
|
14
14
|
setup_public_vpc
|
15
|
+
|
16
|
+
azs = []
|
17
|
+
driver.ec2.availability_zones.each {|az| azs << az }
|
18
|
+
az = azs[1].name
|
19
|
+
aws_subnet 'test_subnet2' do
|
20
|
+
vpc 'test_vpc'
|
21
|
+
cidr_block '10.0.1.0/24'
|
22
|
+
availability_zone az
|
23
|
+
map_public_ip_on_launch true
|
24
|
+
end
|
25
|
+
|
15
26
|
it "machine_batch creates multiple machines", :super_slow do
|
16
27
|
expect_recipe {
|
17
28
|
machine_batch 'test_machines' do
|
29
|
+
action :allocate
|
18
30
|
(1..3).each do |i|
|
19
31
|
machine "test_machine#{i}" do
|
20
32
|
machine_options bootstrap_options: {
|
21
33
|
subnet_id: 'test_public_subnet',
|
22
34
|
key_name: 'test_key_pair'
|
23
35
|
}, source_dest_check: false
|
24
|
-
action :allocate
|
25
36
|
end
|
26
37
|
end
|
27
38
|
action :allocate
|
@@ -34,6 +45,30 @@ describe Chef::Resource::MachineBatch do
|
|
34
45
|
source_dest_check: false
|
35
46
|
).and be_idempotent
|
36
47
|
end
|
48
|
+
|
49
|
+
it "machine_batch supports runtime machine_options", :super_slow do
|
50
|
+
expect_recipe {
|
51
|
+
subnets = %w(test_public_subnet test_subnet2)
|
52
|
+
|
53
|
+
machine_batch 'test_machines' do
|
54
|
+
action :allocate
|
55
|
+
(1..2).each do |i|
|
56
|
+
machine "test_machine#{i}" do
|
57
|
+
machine_options bootstrap_options: {
|
58
|
+
subnet_id: subnets[i-1],
|
59
|
+
key_name: 'test_key_pair'
|
60
|
+
}, source_dest_check: (i == 1)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
}.to create_an_aws_instance('test_machine1',
|
65
|
+
subnet_id: test_public_subnet.aws_object.id,
|
66
|
+
source_dest_check: true
|
67
|
+
).and create_an_aws_instance('test_machine2',
|
68
|
+
subnet_id: test_subnet2.aws_object.id,
|
69
|
+
source_dest_check: false
|
70
|
+
).and be_idempotent
|
71
|
+
end
|
37
72
|
end
|
38
73
|
|
39
74
|
end
|
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: 3.0.
|
4
|
+
version: 3.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Ball
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-provisioning
|
@@ -238,7 +238,6 @@ files:
|
|
238
238
|
- spec/integration/machine_batch_spec.rb
|
239
239
|
- spec/integration/machine_image_spec.rb
|
240
240
|
- spec/integration/machine_spec.rb
|
241
|
-
- spec/persistence_file.txt
|
242
241
|
- spec/spec_helper.rb
|
243
242
|
- spec/unit/chef/provisioning/aws_driver/credentials_spec.rb
|
244
243
|
- spec/unit/chef/provisioning/aws_driver/driver_spec.rb
|
@@ -263,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
263
262
|
version: '0'
|
264
263
|
requirements: []
|
265
264
|
rubyforge_project:
|
266
|
-
rubygems_version: 2.6
|
265
|
+
rubygems_version: 2.7.6
|
267
266
|
signing_key:
|
268
267
|
specification_version: 4
|
269
268
|
summary: Provisioner for creating aws containers in Chef Provisioning.
|
data/spec/persistence_file.txt
DELETED
@@ -1,219 +0,0 @@
|
|
1
|
-
example_id | status | run_time |
|
2
|
-
--------------------------------------------------------------------- | ------- | ---------------------- |
|
3
|
-
./spec/integration/aws_auto_scaling_group_spec.rb[1:1:1:1] | passed | 16.8 seconds |
|
4
|
-
./spec/integration/aws_auto_scaling_group_spec.rb[1:1:1:2] | passed | 2 minutes 36.1 seconds |
|
5
|
-
./spec/integration/aws_auto_scaling_group_spec.rb[1:1:1:3:1] | passed | 17.59 seconds |
|
6
|
-
./spec/integration/aws_auto_scaling_group_spec.rb[1:1:1:4] | passed | 2 minutes 35.7 seconds |
|
7
|
-
./spec/integration/aws_auto_scaling_group_spec.rb[1:1:1:5:1] | passed | 0.93488 seconds |
|
8
|
-
./spec/integration/aws_auto_scaling_group_spec.rb[1:1:1:5:2] | passed | 0.94444 seconds |
|
9
|
-
./spec/integration/aws_cache_subnet_group_spec.rb[1:1:1:1] | passed | 1.37 seconds |
|
10
|
-
./spec/integration/aws_cloudsearch_domain_spec.rb[1:1:1:1] | passed | 3.45 seconds |
|
11
|
-
./spec/integration/aws_cloudsearch_domain_spec.rb[1:1:1:2] | passed | 0.16053 seconds |
|
12
|
-
./spec/integration/aws_cloudwatch_alarm_spec.rb[1:1:1:1] | passed | 2.55 seconds |
|
13
|
-
./spec/integration/aws_cloudwatch_alarm_spec.rb[1:1:1:2] | passed | 2.84 seconds |
|
14
|
-
./spec/integration/aws_cloudwatch_alarm_spec.rb[1:1:1:3:1] | unknown | |
|
15
|
-
./spec/integration/aws_cloudwatch_alarm_spec.rb[1:1:1:4:1] | passed | 3.29 seconds |
|
16
|
-
./spec/integration/aws_cloudwatch_alarm_spec.rb[1:1:1:4:2] | unknown | |
|
17
|
-
./spec/integration/aws_cloudwatch_alarm_spec.rb[1:1:1:4:3] | unknown | |
|
18
|
-
./spec/integration/aws_cloudwatch_alarm_spec.rb[1:1:1:5:1] | failed | 3.92 seconds |
|
19
|
-
./spec/integration/aws_dhcp_options_spec.rb[1:1:1:1] | passed | 1.52 seconds |
|
20
|
-
./spec/integration/aws_dhcp_options_spec.rb[1:1:1:2] | passed | 1.95 seconds |
|
21
|
-
./spec/integration/aws_dhcp_options_spec.rb[1:1:1:3:1] | passed | 1.22 seconds |
|
22
|
-
./spec/integration/aws_dhcp_options_spec.rb[1:1:1:3:2] | passed | 1.29 seconds |
|
23
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:1] | passed | 8.75 seconds |
|
24
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:2:1] | passed | 10.94 seconds |
|
25
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:3] | passed | 8.52 seconds |
|
26
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:4] | passed | 9.06 seconds |
|
27
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:5] | passed | 9.31 seconds |
|
28
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:6] | passed | 9.11 seconds |
|
29
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:7:1] | passed | 9.71 seconds |
|
30
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:7:2] | passed | 14.23 seconds |
|
31
|
-
./spec/integration/aws_ebs_volume_spec.rb[1:1:1:7:3] | passed | 8.98 seconds |
|
32
|
-
./spec/integration/aws_eip_address_spec.rb[1:1:1:1] | passed | 1.22 seconds |
|
33
|
-
./spec/integration/aws_eip_address_spec.rb[1:1:1:2] | passed | 0.12691 seconds |
|
34
|
-
./spec/integration/aws_eip_address_spec.rb[1:1:1:3:1] | passed | 0.76053 seconds |
|
35
|
-
./spec/integration/aws_eip_address_spec.rb[1:1:1:3:2] | passed | 0.7227 seconds |
|
36
|
-
./spec/integration/aws_eip_address_spec.rb[1:1:1:4:1] | passed | 0.66903 seconds |
|
37
|
-
./spec/integration/aws_eip_address_spec.rb[1:1:1:5:1] | unknown | |
|
38
|
-
./spec/integration/aws_elasticsearch_domain_spec.rb[1:1:1:1] | passed | 0.49115 seconds |
|
39
|
-
./spec/integration/aws_elasticsearch_domain_spec.rb[1:1:1:2] | passed | 3.25 seconds |
|
40
|
-
./spec/integration/aws_elasticsearch_domain_spec.rb[1:1:1:3:1] | passed | 2.18 seconds |
|
41
|
-
./spec/integration/aws_elasticsearch_domain_spec.rb[1:1:1:3:2] | passed | 1.29 seconds |
|
42
|
-
./spec/integration/aws_elasticsearch_domain_spec.rb[1:1:1:3:3] | passed | 1.74 seconds |
|
43
|
-
./spec/integration/aws_elasticsearch_domain_spec.rb[1:1:1:3:4] | passed | 3.37 seconds |
|
44
|
-
./spec/integration/aws_iam_instance_profile_spec.rb[1:1:1:1] | passed | 0.9686 seconds |
|
45
|
-
./spec/integration/aws_iam_instance_profile_spec.rb[1:1:1:2:1] | passed | 2.42 seconds |
|
46
|
-
./spec/integration/aws_iam_instance_profile_spec.rb[1:1:1:2:2:1] | passed | 2.28 seconds |
|
47
|
-
./spec/integration/aws_iam_instance_profile_spec.rb[1:1:1:2:2:2] | passed | 2.23 seconds |
|
48
|
-
./spec/integration/aws_iam_instance_profile_spec.rb[1:1:1:2:2:3:1] | passed | 3.59 seconds |
|
49
|
-
./spec/integration/aws_iam_role_spec.rb[1:1:1:1] | passed | 1.03 seconds |
|
50
|
-
./spec/integration/aws_iam_role_spec.rb[1:1:1:2] | passed | 2.05 seconds |
|
51
|
-
./spec/integration/aws_iam_role_spec.rb[1:1:1:3:1] | passed | 2.99 seconds |
|
52
|
-
./spec/integration/aws_iam_role_spec.rb[1:1:1:3:2] | passed | 2.14 seconds |
|
53
|
-
./spec/integration/aws_iam_role_spec.rb[1:1:1:3:3] | passed | 1.66 seconds |
|
54
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:1] | passed | 1.18 seconds |
|
55
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:2] | passed | 2.58 seconds |
|
56
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:3:1] | passed | 2.31 seconds |
|
57
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:4:1] | passed | 0.98383 seconds |
|
58
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:5:1] | passed | 1.35 seconds |
|
59
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:5:2:1] | passed | 4.82 seconds |
|
60
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:5:3:1] | passed | 1.5 seconds |
|
61
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:5:3:2] | passed | 1.95 seconds |
|
62
|
-
./spec/integration/aws_internet_gateway_spec.rb[1:1:1:5:4:1] | passed | 4.33 seconds |
|
63
|
-
./spec/integration/aws_key_pair_spec.rb[1:1:1:1] | passed | 1.68 seconds |
|
64
|
-
./spec/integration/aws_launch_configuration_spec.rb[1:1:1:1] | passed | 22.62 seconds |
|
65
|
-
./spec/integration/aws_launch_configuration_spec.rb[1:1:1:2] | passed | 21.86 seconds |
|
66
|
-
./spec/integration/aws_launch_configuration_spec.rb[1:1:1:3] | passed | 22.12 seconds |
|
67
|
-
./spec/integration/aws_nat_gateway_spec.rb[1:1:1:1:1] | passed | 2 minutes 53 seconds |
|
68
|
-
./spec/integration/aws_nat_gateway_spec.rb[1:1:1:2:1:1] | passed | 43.61 seconds |
|
69
|
-
./spec/integration/aws_network_acl_spec.rb[1:1:1:1] | passed | 2.35 seconds |
|
70
|
-
./spec/integration/aws_network_acl_spec.rb[1:1:1:2] | passed | 2.92 seconds |
|
71
|
-
./spec/integration/aws_network_acl_spec.rb[1:1:1:3:1] | passed | 2.32 seconds |
|
72
|
-
./spec/integration/aws_network_acl_spec.rb[1:1:1:4:1] | passed | 1.64 seconds |
|
73
|
-
./spec/integration/aws_network_acl_spec.rb[1:1:1:5] | passed | 2.62 seconds |
|
74
|
-
./spec/integration/aws_network_acl_spec.rb[1:1:1:6:1] | passed | 1.53 seconds |
|
75
|
-
./spec/integration/aws_network_acl_spec.rb[1:1:1:6:2] | passed | 1.45 seconds |
|
76
|
-
./spec/integration/aws_network_interface_spec.rb[1:1:1:1:1] | unknown | |
|
77
|
-
./spec/integration/aws_network_interface_spec.rb[1:1:1:1:2] | passed | 3.12 seconds |
|
78
|
-
./spec/integration/aws_network_interface_spec.rb[1:1:1:1:3:1] | passed | 1.86 seconds |
|
79
|
-
./spec/integration/aws_network_interface_spec.rb[1:1:1:1:3:2] | passed | 1.63 seconds |
|
80
|
-
./spec/integration/aws_rds_instance_spec.rb[1:1:1:1] | failed | 2.21 seconds |
|
81
|
-
./spec/integration/aws_rds_instance_spec.rb[1:1:1:2] | passed | 34.67 seconds |
|
82
|
-
./spec/integration/aws_rds_instance_spec.rb[1:1:1:3] | passed | 49.53 seconds |
|
83
|
-
./spec/integration/aws_rds_instance_spec.rb[1:1:1:4:1] | passed | 1.47 seconds |
|
84
|
-
./spec/integration/aws_rds_instance_spec.rb[1:1:1:4:2] | passed | 1.58 seconds |
|
85
|
-
./spec/integration/aws_rds_parameter_group_spec.rb[1:1:1:1] | passed | 2 minutes 10.5 seconds |
|
86
|
-
./spec/integration/aws_rds_parameter_group_spec.rb[1:1:1:2] | passed | 14.3 seconds |
|
87
|
-
./spec/integration/aws_rds_parameter_group_spec.rb[1:1:1:3] | passed | 6.52 seconds |
|
88
|
-
./spec/integration/aws_rds_parameter_group_spec.rb[1:1:1:4:1] | passed | 6.25 seconds |
|
89
|
-
./spec/integration/aws_rds_subnet_group_spec.rb[1:1:1:1] | passed | 2.91 seconds |
|
90
|
-
./spec/integration/aws_rds_subnet_group_spec.rb[1:1:1:2] | passed | 2.63 seconds |
|
91
|
-
./spec/integration/aws_rds_subnet_group_spec.rb[1:1:1:3:1] | passed | 1.68 seconds |
|
92
|
-
./spec/integration/aws_rds_subnet_group_spec.rb[1:1:1:3:2] | passed | 1.72 seconds |
|
93
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:1:1] | passed | 1.33 seconds |
|
94
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:1:2] | passed | 6.79 seconds |
|
95
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:1:3] | passed | 0.00119 seconds |
|
96
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:1:4] | passed | 1.95 seconds |
|
97
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:1:5] | passed | 1.84 seconds |
|
98
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:1] | passed | 0.0362 seconds |
|
99
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:2] | passed | 0.03165 seconds |
|
100
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:3] | passed | 2.12 seconds |
|
101
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:4] | passed | 1.52 seconds |
|
102
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:5] | passed | 0.03268 seconds |
|
103
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:6] | passed | 3.04 seconds |
|
104
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:7] | passed | 2.21 seconds |
|
105
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:8] | passed | 2.13 seconds |
|
106
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:9] | passed | 1.54 seconds |
|
107
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:10] | passed | 1.37 seconds |
|
108
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:11:1] | passed | 1.45 seconds |
|
109
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:11:2] | passed | 0.0014 seconds |
|
110
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:11:3] | passed | 0.03327 seconds |
|
111
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:1] | passed | 1.88 seconds |
|
112
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:2] | passed | 1.86 seconds |
|
113
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:3] | passed | 1.53 seconds |
|
114
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:4] | passed | 2.3 seconds |
|
115
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:5] | passed | 2.5 seconds |
|
116
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:6] | passed | 2.53 seconds |
|
117
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:7] | passed | 2.02 seconds |
|
118
|
-
./spec/integration/aws_route53_hosted_zone_spec.rb[1:1:1:1:2:12:8] | passed | 2.82 seconds |
|
119
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:1] | passed | 1.56 seconds |
|
120
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:2] | passed | 2.14 seconds |
|
121
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:3] | passed | 3.73 seconds |
|
122
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:4:1] | passed | 2.46 seconds |
|
123
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:5:1] | passed | 2.3 seconds |
|
124
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:6:1] | unknown | |
|
125
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:7] | passed | 1.96 seconds |
|
126
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:8:1] | passed | 1.33 seconds |
|
127
|
-
./spec/integration/aws_route_table_spec.rb[1:1:1:8:2] | passed | 1.22 seconds |
|
128
|
-
./spec/integration/aws_route_table_spec.rb[1:1:2:1] | passed | 4.09 seconds |
|
129
|
-
./spec/integration/aws_s3_bucket_spec.rb[1:1:1:1] | passed | 1.49 seconds |
|
130
|
-
./spec/integration/aws_s3_bucket_spec.rb[1:1:1:2] | passed | 2.31 seconds |
|
131
|
-
./spec/integration/aws_s3_bucket_spec.rb[1:1:1:3:1] | passed | 0.91834 seconds |
|
132
|
-
./spec/integration/aws_s3_bucket_spec.rb[1:1:1:3:2] | pending | 0.97497 seconds |
|
133
|
-
./spec/integration/aws_s3_bucket_spec.rb[1:1:2:1] | passed | 1.76 seconds |
|
134
|
-
./spec/integration/aws_security_group_spec.rb[1:1:1:1] | passed | 2.37 seconds |
|
135
|
-
./spec/integration/aws_security_group_spec.rb[1:1:1:2] | passed | 5.89 seconds |
|
136
|
-
./spec/integration/aws_security_group_spec.rb[1:1:1:3] | passed | 0.29645 seconds |
|
137
|
-
./spec/integration/aws_security_group_spec.rb[1:1:1:4] | passed | 3.1 seconds |
|
138
|
-
./spec/integration/aws_security_group_spec.rb[1:1:1:5:1] | passed | 2.04 seconds |
|
139
|
-
./spec/integration/aws_security_group_spec.rb[1:1:1:5:2] | passed | 3.35 seconds |
|
140
|
-
./spec/integration/aws_security_group_spec.rb[1:1:2:1] | passed | 2.85 seconds |
|
141
|
-
./spec/integration/aws_security_group_spec.rb[1:1:2:2] | passed | 41.16 seconds |
|
142
|
-
./spec/integration/aws_security_group_spec.rb[1:1:2:3] | passed | 38.86 seconds |
|
143
|
-
./spec/integration/aws_security_group_spec.rb[1:1:3:1] | passed | 0.12059 seconds |
|
144
|
-
./spec/integration/aws_security_group_spec.rb[1:1:3:2] | passed | 1.29 seconds |
|
145
|
-
./spec/integration/aws_server_certificate_spec.rb[1:1:1:1] | passed | 1.15 seconds |
|
146
|
-
./spec/integration/aws_server_certificate_spec.rb[1:1:1:2] | passed | 0.75483 seconds |
|
147
|
-
./spec/integration/aws_subnet_spec.rb[1:1:1:1] | passed | 2.87 seconds |
|
148
|
-
./spec/integration/aws_subnet_spec.rb[1:1:1:2] | passed | 7 seconds |
|
149
|
-
./spec/integration/aws_subnet_spec.rb[1:1:1:3] | passed | 3.43 seconds |
|
150
|
-
./spec/integration/aws_subnet_spec.rb[1:1:1:4:1] | passed | 1.07 seconds |
|
151
|
-
./spec/integration/aws_subnet_spec.rb[1:1:1:4:2] | passed | 1.26 seconds |
|
152
|
-
./spec/integration/aws_vpc_peering_connection_spec.rb[1:1:1:1] | passed | 0.06256 seconds |
|
153
|
-
./spec/integration/aws_vpc_peering_connection_spec.rb[1:1:1:2] | passed | 2.25 seconds |
|
154
|
-
./spec/integration/aws_vpc_peering_connection_spec.rb[1:1:1:3] | passed | 3.54 seconds |
|
155
|
-
./spec/integration/aws_vpc_peering_connection_spec.rb[1:1:1:4] | passed | 2.02 seconds |
|
156
|
-
./spec/integration/aws_vpc_peering_connection_spec.rb[1:1:1:5] | passed | 0.87157 seconds |
|
157
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:1:1] | passed | 3.59 seconds |
|
158
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:1:2] | passed | 3.44 seconds |
|
159
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:1:3] | passed | 8.68 seconds |
|
160
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:2:1:1] | passed | 2.88 seconds |
|
161
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:3] | passed | 3.2 seconds |
|
162
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:4:1] | passed | 1.03 seconds |
|
163
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:4:2] | passed | 1.07 seconds |
|
164
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:5] | passed | 0.03087 seconds |
|
165
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:6:1] | passed | 1.98 seconds |
|
166
|
-
./spec/integration/aws_vpc_spec.rb[1:1:1:7:1] | passed | 58.26 seconds |
|
167
|
-
./spec/integration/load_balancer_spec.rb[1:1:1:1:1] | passed | 3 minutes 49.8 seconds |
|
168
|
-
./spec/integration/load_balancer_spec.rb[1:1:1:1:2] | passed | 7.46 seconds |
|
169
|
-
./spec/integration/load_balancer_spec.rb[1:1:1:1:3:1] | passed | 1.59 seconds |
|
170
|
-
./spec/integration/machine_batch_spec.rb[1:1:1:1] | unknown | |
|
171
|
-
./spec/integration/machine_image_spec.rb[1:1:1:1] | unknown | |
|
172
|
-
./spec/integration/machine_image_spec.rb[1:1:1:2:1] | unknown | |
|
173
|
-
./spec/integration/machine_image_spec.rb[1:1:1:2:2] | unknown | |
|
174
|
-
./spec/integration/machine_image_spec.rb[1:1:1:3] | unknown | |
|
175
|
-
./spec/integration/machine_image_spec.rb[1:1:1:4:1] | unknown | |
|
176
|
-
./spec/integration/machine_image_spec.rb[1:1:1:4:2] | unknown | |
|
177
|
-
./spec/integration/machine_spec.rb[1:1:1:1] | passed | 15.81 seconds |
|
178
|
-
./spec/integration/machine_spec.rb[1:1:1:2] | passed | 31.74 seconds |
|
179
|
-
./spec/integration/machine_spec.rb[1:1:1:3] | failed | 1.04 seconds |
|
180
|
-
./spec/integration/machine_spec.rb[1:1:1:4] | failed | 49.06 seconds |
|
181
|
-
./spec/integration/machine_spec.rb[1:1:1:5] | failed | 37.79 seconds |
|
182
|
-
./spec/integration/machine_spec.rb[1:1:1:6] | failed | 47.97 seconds |
|
183
|
-
./spec/integration/machine_spec.rb[1:1:1:7] | passed | 1 minute 4.3 seconds |
|
184
|
-
./spec/integration/machine_spec.rb[1:1:1:8] | failed | 0.99452 seconds |
|
185
|
-
./spec/integration/machine_spec.rb[1:1:1:9] | failed | 1.13 seconds |
|
186
|
-
./spec/integration/machine_spec.rb[1:1:1:10:1] | failed | 0.20056 seconds |
|
187
|
-
./spec/integration/machine_spec.rb[1:1:1:11:1] | passed | 1 minute 25.95 seconds |
|
188
|
-
./spec/integration/machine_spec.rb[1:1:1:11:2] | passed | 37.36 seconds |
|
189
|
-
./spec/integration/machine_spec.rb[1:1:1:12] | failed | 50.05 seconds |
|
190
|
-
./spec/integration/machine_spec.rb[1:1:1:13:1] | passed | 1 minute 16.77 seconds |
|
191
|
-
./spec/integration/machine_spec.rb[1:1:1:13:2] | passed | 24.02 seconds |
|
192
|
-
./spec/integration/machine_spec.rb[1:1:1:14] | passed | 0.04802 seconds |
|
193
|
-
./spec/integration/machine_spec.rb[1:1:1:15] | passed | 56.98 seconds |
|
194
|
-
./spec/integration/machine_spec.rb[1:1:1:16] | passed | 12.99 seconds |
|
195
|
-
./spec/integration/machine_spec.rb[1:1:1:17:1] | passed | 49.34 seconds |
|
196
|
-
./spec/integration/machine_spec.rb[1:1:1:17:2] | passed | 49.38 seconds |
|
197
|
-
./spec/unit/chef/provisioning/aws_driver/credentials_spec.rb[1:1:1:1] | passed | 0.01546 seconds |
|
198
|
-
./spec/unit/chef/provisioning/aws_driver/credentials_spec.rb[1:1:1:2] | passed | 0.00158 seconds |
|
199
|
-
./spec/unit/chef/provisioning/aws_driver/credentials_spec.rb[1:1:2:1] | passed | 0.00138 seconds |
|
200
|
-
./spec/unit/chef/provisioning/aws_driver/credentials_spec.rb[1:1:2:2] | passed | 0.00105 seconds |
|
201
|
-
./spec/unit/chef/provisioning/aws_driver/credentials_spec.rb[1:1:3:1] | passed | 0.00099 seconds |
|
202
|
-
./spec/unit/chef/provisioning/aws_driver/credentials_spec.rb[1:1:3:2] | passed | 0.00091 seconds |
|
203
|
-
./spec/unit/chef/provisioning/aws_driver/driver_spec.rb[1:1:1:1] | passed | 0.00139 seconds |
|
204
|
-
./spec/unit/chef/provisioning/aws_driver/driver_spec.rb[1:1:2:1] | passed | 0.00088 seconds |
|
205
|
-
./spec/unit/chef/provisioning/aws_driver/driver_spec.rb[1:1:3:1] | passed | 0.0009 seconds |
|
206
|
-
./spec/unit/chef/provisioning/aws_driver/driver_spec.rb[1:1:4:1] | passed | 0.00083 seconds |
|
207
|
-
./spec/unit/chef/provisioning/aws_driver/driver_spec.rb[1:1:5:1:1] | passed | 0.00112 seconds |
|
208
|
-
./spec/unit/chef/provisioning/aws_driver/driver_spec.rb[1:1:5:2:1] | passed | 0.00091 seconds |
|
209
|
-
./spec/unit/chef/provisioning/aws_driver/driver_spec.rb[1:1:5:3:1] | passed | 0.00094 seconds |
|
210
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[1:1] | pending | 0.00002 seconds |
|
211
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[1:2] | pending | 0 seconds |
|
212
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:1] | passed | 0.00038 seconds |
|
213
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:2] | passed | 0.00039 seconds |
|
214
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:3:1] | passed | 0.0021 seconds |
|
215
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:3:2] | passed | 0.00033 seconds |
|
216
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:3:3] | passed | 0.00025 seconds |
|
217
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:3:4] | passed | 0.00025 seconds |
|
218
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:3:5] | passed | 0.00041 seconds |
|
219
|
-
./spec/unit/chef/provisioning/aws_driver/route53_spec.rb[2:4:1] | passed | 0.00063 seconds |
|