Skip to main content

aws_ec2_eip_association resource

Use the aws_ec2_eip_association InSpec audit resource to test properties of the singular resource of AWS Elastic IP association.

An Elastic IP (EIP) is uniquely identified by the public IPv4 address, for example association_id.

association_id (required)

The association ID for the address.

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_association(association_id: 'ASSOCIATION_ID') do
  it { should exist }
end

Parameters

association_id (required)

The association ID for the address.

Properties

association_id
The association ID for the address.

Examples

Check association ID whether it is correct or not:

describe aws_ec2_eip_association(association_id: 'ASSOCIATION_ID') do
   its('ASSOCIATION_ID') { should eq "ASSOCIATION_ID" }
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_eip_association(association_id: 'ASSOCIATION_ID') do
  it { should exist }
end

Use should_not to test the entity does not exist.

describe aws_ec2_eip_association(association_id: 'ASSOCIATION_ID') do
  it { should_not exist }
end

be_available

Check if the entity is available.

describe aws_ec2_eip_association(association_id: 'ASSOCIATION_ID') do
  it { should be_available }
end

AWS Permissions

Your AWS principal will need the EC2:Client:DescribeAddressesResult action with Effect set to Allow.

See the Actions, Resources, and Condition Keys for Amazon EC2 documentation for additional information.

Thank you for your feedback!

×