aws_ec2_egress_only_internet_gateways resource
Use the aws_ec2_egress_only_internet_gateways InSpec audit resource to test properties of multiple AWS EC2 egress-only internet gateways.
The AWS::EC2::EgressOnlyInternetGateway specifies an egress-only internet gateway for your VPC.
Syntax
Ensure that the egress-only internet gateway Id exists.
describe aws_ec2_egress_only_internet_gateways do
it { should exist }
end
Parameters
For additional information, see the AWS documentation on AWS EC2 egress-only internet gateway..
Properties
attachments- Information about the attachment of the egress-only internet gateway.
Field:
attachmentsattachments_states- The current state of the attachment.
Field:
stateattachments_vpc_ids- The ID of the VPC.
Field:
vpc_idegress_only_internet_gateway_id- The ID of the egress-only internet gateway.
Field:
egress_only_internet_gateway_id- The tags assigned to the egress-only internet gateway.
Field:
tags
Examples
Ensure an egress-only internet gateway ID is available:
describe aws_ec2_egress_only_internet_gateways do
its('egress_only_internet_gateway_ids') { should include 'EgressOnlyInternetGatewayId' }
end
Ensure that the attachments states is attached:
describe aws_ec2_egress_only_internet_gateways do
its('attachments_states') { should include 'attached' }
end
Matchers
For a full list of available matchers, see our Universal Matchers page.The controls will pass if the describe method returns at least one result.
exist
Use should to test that the entity exists.
describe aws_ec2_egress_only_internet_gateways do
it { should exist }
end
Use should_not to test that an entity does not exist.
describe aws_ec2_egress_only_internet_gateways do
it { should_not exist }
end
be_available
Use should to check if the entity is available.
describe aws_ec2_egress_only_internet_gateways do
it { should be_available }
end
AWS Permissions
Your AWS principal will need the EC2:Client:DescribeEgressOnlyInternetGatewaysResult action with Effect set to Allow.