title | platform |
---|---|
About the aws_ec2_eip_associations Resource |
aws |
Use the aws_ec2_eip_associations
InSpec audit resource to test properties of some or all AWS Elastic IP association.
Verify that the association exists.
describe aws_ec2_eip_associations do
it { should exist }
end
This resource does not expect any parameters.
See the AWS documentation on AWS Elastic IP association for additional information.
Property | Description | Field |
---|---|---|
association_ids | The association ID for the address. | association_id |
describe aws_ec2_eip_associations do
its('association_ids') { should include "ASSOCIATION_ID" }
end
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
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
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.