aws_transit_gateway_multicast_domain_associations Resource
Use the aws_transit_gateway_multicast_domain_associations
Chef InSpec audit resource to test properties of multiple AWS EC2 transit gateway multicast domain associations.
The AWS::EC2::TransitGatewayMulticastDomainAssociation
resource associates the specified subnets and transit gateway attachments with the specified transit gateway multicast domain.
For additional information, including details on parameters and properties, see the AWS documentation on AWS EC2 TransitGatewayMulticastDomainAssociation.
Install
This resource is available in the Chef InSpec AWS resource pack.
For information on configuring your AWS environment for Chef InSpec and creating an InSpec profile that uses the InSpec AWS resource pack, see the Chef InSpec documentation on the AWS cloud platform.
Syntax
Ensure that transit gateway connect exists.
describe aws_transit_gateway_multicast_domain_associations(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
it { should exist }
end
Parameters
transit_gateway_multicast_domain_id
(required)The ID of the transit gateway multicast domain.
Properties
transit_gateway_attachment_ids
- The ID of the transit gateway attachment.
resource_ids
- The ID of the resource.
resource_types
- The type of resource, for example a VPC attachment.
resource_owner_ids
- The ID of the AWS account that owns the transit gateway multicast domain association resource.
subnets
- The subnet associated with the transit gateway multicast domain.
Examples
Ensure a transit gateway attachment ID is available.
describe aws_transit_gateway_multicast_domain_associations(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
its('transit_gateway_attachment_ids') { should include 'TRANSIT_GATEWAY_ATTACHMENT_ID' }
end
Ensure that the resource type is vpc
.
describe aws_transit_gateway_multicast_domain_associations(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
its('resource_types') { should include 'vpc' }
end
Matchers
For a full list of available matchers, see our Universal Matchers page.This resource has the following special matchers.
exist
Use should
to test that the entity exists.
describe aws_transit_gateway_multicast_domain_associations(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
it { should exist }
end
Use should_not
to test the entity does not exist.
describe aws_transit_gateway_multicast_domain_associations(transit_gateway_multicast_domain_id: "TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID") do
it { should_not exist }
end
be_available
Use should
to check if the entity is available.
describe aws_transit_gateway_multicast_domain_associations(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
it { should be_available }
end
AWS Permissions
Your Principal will need the EC2:Client:GetTransitGatewayMulticastDomainAssociationsResult
action with Effect
set to Allow
.