You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"fortios_router_multicast6" {
source="./modules/fortios/r/fortios_router_multicast6"# dynamic_sort_subtable - (optional) is a type of stringdynamic_sort_subtable=null# multicast_pmtu - (optional) is a type of stringmulticast_pmtu=null# multicast_routing - (optional) is a type of stringmulticast_routing=nullinterface=[{
hello_holdtime =null
hello_interval =null
name =null
}]
pim_sm_global=[{
register_rate_limit =null
rp_address = [{
id =null
ip6_address =null
}]
}]
}
resource"fortios_router_multicast6""this" {
# dynamic_sort_subtable - (optional) is a type of stringdynamic_sort_subtable=var.dynamic_sort_subtable# multicast_pmtu - (optional) is a type of stringmulticast_pmtu=var.multicast_pmtu# multicast_routing - (optional) is a type of stringmulticast_routing=var.multicast_routingdynamic"interface" {
for_each=var.interfacecontent {
# hello_holdtime - (optional) is a type of numberhello_holdtime=interface.value["hello_holdtime"]
# hello_interval - (optional) is a type of numberhello_interval=interface.value["hello_interval"]
# name - (optional) is a type of stringname=interface.value["name"]
}
}
dynamic"pim_sm_global" {
for_each=var.pim_sm_globalcontent {
# register_rate_limit - (optional) is a type of numberregister_rate_limit=pim_sm_global.value["register_rate_limit"]
dynamic"rp_address" {
for_each=pim_sm_global.value.rp_addresscontent {
# id - (optional) is a type of numberid=rp_address.value["id"]
# ip6_address - (optional) is a type of stringip6_address=rp_address.value["ip6_address"]
}
}
}
}
}