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_accesslist" {
source="./modules/fortios/r/fortios_router_accesslist"# 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
exact_match =null
flags =null
id =null
prefix =null
wildcard =null
}]
}
resource"fortios_router_accesslist""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"]
# exact_match - (optional) is a type of stringexact_match=rule.value["exact_match"]
# flags - (optional) is a type of numberflags=rule.value["flags"]
# id - (optional) is a type of numberid=rule.value["id"]
# prefix - (optional) is a type of stringprefix=rule.value["prefix"]
# wildcard - (optional) is a type of stringwildcard=rule.value["wildcard"]
}
}
}