2018-01-12 06:51:17 +00:00
|
|
|
fixtures = {}
|
|
|
|
[
|
2018-04-12 19:48:55 +00:00
|
|
|
'vpc_default_vpc_id',
|
|
|
|
'vpc_default_cidr_block',
|
|
|
|
'vpc_default_dhcp_options_id',
|
2018-01-12 06:51:17 +00:00
|
|
|
'vpc_non_default_id',
|
|
|
|
'vpc_non_default_cidr_block',
|
2018-04-12 19:48:55 +00:00
|
|
|
'vpc_non_default_instance_tenancy',
|
|
|
|
'vpc_non_default_dhcp_options_id',
|
2018-01-12 06:51:17 +00:00
|
|
|
].each do |fixture_name|
|
|
|
|
fixtures[fixture_name] = attribute(
|
|
|
|
fixture_name,
|
|
|
|
default: "default.#{fixture_name}",
|
|
|
|
description: 'See ../build/ec2.tf',
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
control "aws_vpc recall" do
|
2018-04-12 19:48:55 +00:00
|
|
|
describe aws_vpc(fixtures['vpc_default_vpc_id']) do
|
2018-01-12 06:51:17 +00:00
|
|
|
it { should exist}
|
|
|
|
end
|
|
|
|
|
|
|
|
describe aws_vpc do
|
|
|
|
it { should exist }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe aws_vpc(vpc_id: fixtures['vpc_non_default_id']) do
|
|
|
|
it { should exist }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe aws_vpc('vpc-12345678') do
|
|
|
|
it { should_not exist }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
control "aws_vpc properties" do
|
|
|
|
describe aws_vpc(fixtures['vpc_non_default_id']) do
|
|
|
|
its('vpc_id') { should eq fixtures['vpc_non_default_id'] }
|
|
|
|
its('state') { should eq 'available' }
|
|
|
|
its('cidr_block') { should eq fixtures['vpc_non_default_cidr_block']}
|
|
|
|
its('instance_tenancy') { should eq fixtures['vpc_non_default_instance_tenancy']}
|
2018-04-12 19:48:55 +00:00
|
|
|
its('dhcp_options_id') { should eq fixtures['vpc_non_default_dhcp_options_id']}
|
2018-01-12 06:51:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe aws_vpc do
|
2018-04-12 19:48:55 +00:00
|
|
|
its('vpc_id') { should eq fixtures['vpc_default_vpc_id'] }
|
2018-01-12 06:51:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
control "aws_vpc matchers" do
|
|
|
|
describe aws_vpc do
|
|
|
|
it { should be_default }
|
|
|
|
end
|
|
|
|
|
2018-04-12 19:48:55 +00:00
|
|
|
describe aws_vpc(fixtures['vpc_default_vpc_id']) do
|
2018-01-12 06:51:17 +00:00
|
|
|
it { should be_default }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe aws_vpc(fixtures['vpc_non_default_id']) do
|
|
|
|
it { should_not be_default }
|
|
|
|
end
|
|
|
|
end
|