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_firewall_identitybasedroute" {
source="./modules/fortios/r/fortios_firewall_identitybasedroute"# 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=[{
device =null
gateway =null
groups = [{
name =null
}]
id =null
}]
}
resource"fortios_firewall_identitybasedroute""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 {
# device - (optional) is a type of stringdevice=rule.value["device"]
# gateway - (optional) is a type of stringgateway=rule.value["gateway"]
# id - (optional) is a type of numberid=rule.value["id"]
dynamic"groups" {
for_each=rule.value.groupscontent {
# name - (optional) is a type of stringname=groups.value["name"]
}
}
}
}
}