Skip to content

Commit

Permalink
Add support to enable multicast on transit gateway (ansible-collectio…
Browse files Browse the repository at this point in the history
…ns#2063)

SUMMARY

Need to enable multicast while creating transit gateway

ISSUE TYPE

Feature Pull Request

COMPONENT NAME

transit_gateway
ADDITIONAL INFORMATION

Reviewed-by: Alina Buzachis
Reviewed-by: Bikouo Aubin
Reviewed-by: Carlos Schimidt
Reviewed-by: Mark Chappell

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@4752c05
  • Loading branch information
cschimid authored and alinabuzachis committed Oct 23, 2024
1 parent 89eb8d7 commit 7649931
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/module_utils/transitgateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ def _set_option(self, name, value):
def set_dns_support(self, value):
return self._set_option("DnsSupport", value)

def set_multicast_support(self, value):
return self._set_option("MulticastSupport", value)

def set_ipv6_support(self, value):
return self._set_option("Ipv6Support", value)

Expand Down

0 comments on commit 7649931

Please sign in to comment.