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.
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
For a full list of available matchers, see our Universal Matchers page.This resource has the following special matchers.
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 AWS 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.