aws::transit-gateway-multicast-domain

Creates a transit gateway multicast domain.

Example

aws::transit-gateway-multicast-domain transit-gateway-multicast-domain-example
    transit-gateway: $(aws::transit-gateway example-transit-gateway)

    association
        vpc-attachment: $(aws::transit-gateway-vpc-attachment transit-gateway-vpc-attachment-example)
        subnet: $(aws::subnet example-subnet-1)
    end

    group-member
        group-ip-address: "224.0.0.0"
        network-interface: $(aws::network-interface example-network-interface)
    end
end

Attributes

Attribute Description
transit-gateway The transit gateway that processes the multicast traffic. (Required)
options subresource

The multicast domain options.

auto-accept-shared-associations
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
igmpv2-support
Indicates whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
static-sources-support
Indicates whether to enable support for statically configuring multicast group sources for a domain.
association list subresource

The attachments and subnets to associate with the multicast domain.

vpc-attachment
The Vpc attachment that needs to be associated to the multicast domain. (Required)
subnet
The subnet that needs to be included in the domain. (Required)
group-member list subresource

The network interfaces that receive the multicast traffic.

group-ip-address
The IP address to assign to the multicast domain group. The address should be in the 224.0.0.0/4 or ff00::/8 CIDR range. (Required)
network-interface
The network interface that receives the multicast traffic. (Required)
group-source list subresource

The network interfaces that send the multicast traffic.

group-ip-address
The IP address to assign to the multicast domain group. The address should be in the 224.0.0.0/4 or ff00::/8 CIDR range. (Required)
network-interface
The network interface that sends the multicast traffic. (Required)

Outputs

Attribute Description
id The ID of the multicast domain.