doc: change data type from boolean to string (#1997)
the api doesn't accept the boolean value. it needs a string containing a boolean value.
This commit is contained in:
parent
7c8fca48eb
commit
9bba65e614
|
@ -61,16 +61,18 @@ Following are the configuration options available for the backend.
|
|||
<li>
|
||||
<span class="param">log_raw</span>
|
||||
<span class="param-flags">optional</span>
|
||||
A boolean, if set, logs the security sensitive information without
|
||||
hashing, in the raw format. Defaults to `false`.
|
||||
A string containing a boolean value ('true'/'false'), if set, logs
|
||||
the security sensitive information without hashing, in the raw
|
||||
format. Defaults to `false`.
|
||||
</li>
|
||||
<li>
|
||||
<span class="param">hmac_accessor</span>
|
||||
<span class="param-flags">optional</span>
|
||||
A boolean, if set, enables the hashing of token accessor. Defaults
|
||||
A string containing a boolean value ('true'/'false'), if set,
|
||||
enables the hashing of token accessor. Defaults
|
||||
to `true`. This option is useful only when `log_raw` is `false`.
|
||||
</li>
|
||||
<li>
|
||||
<li>
|
||||
<span class="param">mode</span>
|
||||
<span class="param-flags">optional</span>
|
||||
A string containing an octal number representing the bit pattern
|
||||
|
|
Loading…
Reference in New Issue