Skip to main content

aws_transit_gateway_multicast_domain_association Resource

[edit on GitHub]

Use the aws_transit_gateway_multicast_domain_association Chef InSpec audit resource to test properties of a single AWS EC2 transit gateway multicast domain association.

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.

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 the transit gateway multicast domain association exists.

describe aws_transit_gateway_multicast_domain_association(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
  it { should exits }
end

Parameters

transit_gateway_multicast_domain_id (required)

The ID of the transit gateway multicast domain.

Properties

transit_gateway_attachment_id
The ID of the Connect attachment.
resource_id
The ID of the resource.
resource_type
The type of resource, for example a VPC attachment.
resource_owner_id
The ID of the AWS account that owns the transit gateway multicast domain association resource.
subnet (subnet_id)
The subnet associated with the transit gateway multicast domain. The ID of the subnet.
subnet (state)
The subnet associated with the transit gateway multicast domain. The state of the subnet association.

Examples

Ensure a transit gateway attachment ID is available.

describe aws_transit_gateway_multicast_domain_association(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
  its('transit_gateway_attachment_id') { should eq 'tgw-attach-1234567890' }
end

Ensure that the state is available.

describe aws_transit_gateway_multicast_domain_association(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
    its('subnet.state') { should eq 'associated' }
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_transit_gateway_multicast_domain_association(transit_gateway_multicast_domain_id: 'TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID') do
  it { should exits }
end

Use should_not to test the entity does not exist.

describe aws_transit_gateway_multicast_domain_association(transit_gateway_multicast_domain_id: "TRANSIT_GATEWAY_MULTICAST_DOMAIN_ID") do
  it { should_not exits }
end

be_available

Use should to check if the transit gateway multicast domain association is available.

describe aws_transit_gateway_multicast_domain_association(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.

Was this page helpful?

×









Search Results