aws_ec2_eip_associations Resource
Use the aws_ec2_eip_associations
InSpec audit resource to test properties of some or all AWS Elastic IP association.
This resource does not expect any parameters.
For additional information, including details on parameters and properties, see the AWS documentation on AWS Elastic IP association.
Installation
This resource is available in the Chef InSpec AWS resource pack.
See the Chef InSpec documentation on cloud platforms for information on configuring your AWS environment for InSpec and creating an InSpec profile that uses the InSpec AWS resource pack.
Syntax
Verify that the association exists.
describe aws_ec2_eip_associations do
it { should exist }
end
Parameters
This resource does not require any parameters.
Properties
association_ids
- The association ID for the address.
Field:
association_id
Examples
Check association ID is available.
describe aws_ec2_eip_associations do
its('association_ids') { should include "ASSOCIATION_ID" }
end
Matchers
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
exist
The control will pass if the describe returns at least one result.
Use should
to test that the entity exists.
describe aws_ec2_eip_associations do
it { should exist }
end
Use should_not
to test the entity does not exist.
describe aws_ec2_eip_associations do
it { should_not exist }
end
AWS Permissions
Your Principal will need the EC2:Client:DescribeAddressesResult
action with Effect
set to Allow
.
You can find detailed documentation at Actions, Resources, and Condition Keys for Amazon EC2.