mirror of
https://github.com/inspec/inspec
synced 2024-12-22 11:03:11 +00:00
d356cfc6dc
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
49 lines
1.5 KiB
Ruby
49 lines
1.5 KiB
Ruby
fixtures = {}
|
|
[
|
|
'ec2_security_group_default_vpc_id',
|
|
'ec2_default_vpc_subnet_id',
|
|
].each do |fixture_name|
|
|
fixtures[fixture_name] = attribute(
|
|
fixture_name,
|
|
default: "default.#{fixture_name}",
|
|
description: 'See ../build/ec2.tf',
|
|
)
|
|
end
|
|
|
|
control "aws_subnets recall" do
|
|
all_subnets = aws_subnets
|
|
|
|
# You should be able to get a specific subnet given its id
|
|
describe all_subnets.where(subnet_id: fixtures['ec2_default_vpc_subnet_id']) do
|
|
it { should exist }
|
|
end
|
|
|
|
# You should be able to get subnets given a vpc_id
|
|
describe all_subnets.where(vpc_id: fixtures['ec2_security_group_default_vpc_id']) do
|
|
it { should exist }
|
|
end
|
|
|
|
describe all_subnets.where(vpc_id: 'vpc-00000000') do
|
|
it { should_not exist }
|
|
end
|
|
|
|
describe all_subnets.where(subnet_id: 'subnet-00000000') do
|
|
it { should_not exist }
|
|
end
|
|
end
|
|
|
|
control "aws_subnets properties of default VPC subnet" do
|
|
# you should be able to test the cidr_block of a subnet
|
|
describe aws_subnets.where(subnet_id: fixtures['ec2_default_vpc_subnet_id']) do
|
|
its('cidr_blocks') { should include '172.31.96.0/20' }
|
|
its('states') { should_not include 'pending' }
|
|
end
|
|
end
|
|
|
|
control "aws_subnets properties of default VPC" do
|
|
# you should be able to test the cidr_block of a subnet
|
|
describe aws_subnets.where(vpc_id: fixtures['ec2_security_group_default_vpc_id']) do
|
|
its('cidr_blocks') { should include '172.31.96.0/20' }
|
|
its('states') { should include 'available' }
|
|
end
|
|
end
|