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_prefixlist" {
source="./modules/fortios/r/fortios_router_prefixlist"# comments - (optional) is a type of stringcomments=null# dynamic_sort_subtable - (optional) is a type of stringdynamic_sort_subtable=null# name - (required) is a type of stringname=nullrule=[{
action =null
flags =null
ge =null
id =null
le =null
prefix =null
}]
}
resource"fortios_router_prefixlist""this" {
# comments - (optional) is a type of stringcomments=var.comments# dynamic_sort_subtable - (optional) is a type of stringdynamic_sort_subtable=var.dynamic_sort_subtable# name - (required) is a type of stringname=var.namedynamic"rule" {
for_each=var.rulecontent {
# action - (optional) is a type of stringaction=rule.value["action"]
# flags - (optional) is a type of numberflags=rule.value["flags"]
# ge - (optional) is a type of numberge=rule.value["ge"]
# id - (optional) is a type of numberid=rule.value["id"]
# le - (optional) is a type of numberle=rule.value["le"]
# prefix - (optional) is a type of stringprefix=rule.value["prefix"]
}
}
}