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
value = "secure-inline-scan" # Example of an exception with just a name/value pair
58
+
}
54
59
}
55
60
```
56
61
@@ -76,9 +81,14 @@ For more information about the syntax of the exceptions, check the [official Fal
76
81
Supported fields for exceptions:
77
82
78
83
*`name` - (Required) The name of the exception. Only used to provide a handy name, and to potentially link together values in a later rule that has `append = true`.
79
-
*`fields` - (Required) Contains one or more fields that will extract a value from the syscall/k8s_audit events.
84
+
*`fields` - (Optional) Contains one or more fields that will extract a value from the syscall/k8s_audit events.
80
85
*`comps` - (Optional) Contains comparison operators that align 1-1 with the items in the fields property.
81
-
*`values` - (Required) Contains tuples of values. Each item in the tuple should align 1-1 with the corresponding field and comparison operator. Since the value can be a string, a list of strings or a list of a list of strings, the value of this field must be supplied in JSON format. You can use the default `jsonencode` function to provide this value. See the usage example on the top.
86
+
*`values` - (Optional) Contains tuples of values. Each item in the tuple should align 1-1 with the corresponding field
87
+
and comparison operator. Since the value can be a string, a list of strings or a list of a list of strings, the value
88
+
of this field must be supplied in JSON format. You can use the default `jsonencode` function to provide this value.
89
+
See the usage example on the top. **Required** if `fields` and `comps` are set.
90
+
*`value` - (Optional) Contains the single value used when exception is a name/value pair. **Required** if `fields` and
0 commit comments