|
|
|
@ -7,6 +7,8 @@ import "envoy/api/v2/core/base.proto"; |
|
|
|
|
import "google/protobuf/duration.proto"; |
|
|
|
|
import "google/protobuf/wrappers.proto"; |
|
|
|
|
|
|
|
|
|
import "udpa/annotations/sensitive.proto"; |
|
|
|
|
|
|
|
|
|
import "envoy/annotations/deprecation.proto"; |
|
|
|
|
import "udpa/annotations/migrate.proto"; |
|
|
|
|
import "validate/validate.proto"; |
|
|
|
@ -229,7 +231,7 @@ message RedisProxy { |
|
|
|
|
// password is set, then a "NOAUTH Authentication required." error response will be sent to the |
|
|
|
|
// client. If an AUTH command is received when the password is not set, then an "ERR Client sent |
|
|
|
|
// AUTH, but no password is set" error will be returned. |
|
|
|
|
api.v2.core.DataSource downstream_auth_password = 6; |
|
|
|
|
api.v2.core.DataSource downstream_auth_password = 6 [(udpa.annotations.sensitive) = true]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// RedisProtocolOptions specifies Redis upstream protocol options. This object is used in |
|
|
|
@ -238,5 +240,5 @@ message RedisProxy { |
|
|
|
|
message RedisProtocolOptions { |
|
|
|
|
// Upstream server password as defined by the `requirepass` directive |
|
|
|
|
// <https://redis.io/topics/config>`_ in the server's configuration file. |
|
|
|
|
api.v2.core.DataSource auth_password = 1; |
|
|
|
|
api.v2.core.DataSource auth_password = 1 [(udpa.annotations.sensitive) = true]; |
|
|
|
|
} |
|
|
|
|