Redis: Add support for sending AUTH commands during connection

This commit is contained in:
Tim Wojtulewicz 2025-05-30 07:50:08 -07:00
parent 9f12208f57
commit f2aca331ec
8 changed files with 161 additions and 26 deletions

View file

@ -39,6 +39,13 @@ export {
## Timeout for operation requests sent to the backend. Operations that
## exceed this time will return :zeek:see:`Storage::TIMEOUT`.
operation_timeout: interval &default=default_operation_timeout;
## A username to use for authentication the server is protected by an ACL.
username: string &optional;
## A username to use for authentication the server is protected by an ACL
## or by a simple password.
password: string &optional;
};
}