Skip to main content

aws_route53resolver_resolver_rule_association Resource

[edit on GitHub]

Use the aws_route53resolver_resolver_rule_association InSpec audit resource to test properties of a single AWS Route53 Resolver rule association.

The Resolver rule association determines which DNS queries that originate in the VPC are forwarded to your network.

For additional information, including details on parameters and properties, see the AWS documentation on AWS Route53Resolver Resolver Rule 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

Ensure that a resolver rule exists.

describe aws_route53resolver_resolver_rule_association(resolver_rule_association_id: 'RESOLVER_RULE_ASSOCIATION_ID') do
  it { should exist }
end

Parameters

resolver_rule_association_id (required)

The ID of the Resolver rule association that you want to get information about.

Properties

id
The ID of the association between a Resolver rule and a VPC.
resolver_rule_id
The ID of the Resolver rule that you associated with the VPC that is specified by VPCId.
name
The name of an association between a Resolver rule and a VPC.
vpc_id
The ID of the VPC that you associated the Resolver rule with.
status
A code that specifies the current status of the association between a Resolver rule and a VPC.
status_message
A detailed description of the status of the association between a Resolver rule and a VPC.

Examples

Ensure a resolver rule name is available.

describe aws_route53resolver_resolver_rule_association(resolver_rule_association_id: 'RESOLVER_RULE_ASSOCIATION_ID') do
  its('name') { should eq 'RESOLVER_RULE_NAME' }
end

Ensure that the status is COMPLETE or FAILED.

describe aws_route53resolver_resolver_rule_association(resolver_rule_association_id: 'RESOLVER_RULE_ASSOCIATION_ID') do
  its('status') { should eq 'COMPLETE' }
end

Matchers

This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.

The controls will pass if the get method returns at least one result.

exist

Use should to test that the entity exists.

describe aws_route53resolver_resolver_rule_association(resolver_rule_association_id: 'RESOLVER_RULE_ASSOCIATION_ID') do
  it { should exist }
end

Use should_not to test the entity does not exist.

describe aws_route53resolver_resolver_rule_association(resolver_rule_association_id: 'RESOLVER_RULE_ASSOCIATION_ID') do
  it { should_not exist }
end

be_available

Use should to check if the entity is available.

describe aws_route53resolver_resolver_rule_association(resolver_rule_association_id: 'RESOLVER_RULE_ASSOCIATION_ID') do
  it { should be_available }
end

AWS Permissions

Your Principal will need the Route53Resolver:Client:GetResolverRuleAssociationResponse action with Effect set to Allow.

Was this page helpful?

×









Search Results