1 Answer
- Newest
- Most votes
- Most comments
0
What if we create an "AWS::EC2::TransitGatewayMulticastDomainAssociation" for each subnet?
Association1:
Type: AWS::EC2::TransitGatewayMulticastDomainAssociation
Properties:
SubnetId: !Ref Subnet1
TransitGatewayAttachmentId: !Ref TransitGatewayAttachment
TransitGatewayMulticastDomainId: !Ref TransitGatewayMulticastDomain
Association2:
Type: AWS::EC2::TransitGatewayMulticastDomainAssociation
Properties:
SubnetId: !Ref Subnet2
TransitGatewayAttachmentId: !Ref TransitGatewayAttachment
TransitGatewayMulticastDomainId: !Ref TransitGatewayMulticastDomain
Association3:
Type: AWS::EC2::TransitGatewayMulticastDomainAssociation
Properties:
SubnetId: !Ref Subnet3
TransitGatewayAttachmentId: !Ref TransitGatewayAttachment
TransitGatewayMulticastDomainId: !Ref TransitGatewayMulticastDomain
Relevant content
- AWS OFFICIALUpdated 9 months ago

Yep, the documentation is misleading and it isn't clear that the
TransitGatewayMulticastDomainAssociationtype can be instantiated multiple times. It didn't occur to be to try that for some reason so thanks for the hint.