You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
811 B
25 lines
811 B
7 years ago
|
syntax = "proto3";
|
||
|
|
||
|
// [#protodoc-title: Grpc Credentials File Based Metadata]
|
||
|
// Configuration for File Based Metadata Grpc Credentials Plugin
|
||
|
|
||
7 years ago
|
package envoy.config.grpc_credential.v2alpha;
|
||
7 years ago
|
option go_package = "v2alpha";
|
||
|
|
||
|
import "envoy/api/v2/core/base.proto";
|
||
|
|
||
|
message FileBasedMetadataConfig {
|
||
|
|
||
|
// Location or inline data of secret to use for authentication of the Google gRPC connection
|
||
|
// this secret will be attached to a header of the gRPC connection
|
||
|
envoy.api.v2.core.DataSource secret_data = 1;
|
||
|
|
||
|
// Metadata header key to use for sending the secret data
|
||
|
// if no header key is set, "authorization" header will be used
|
||
|
string header_key = 2;
|
||
|
|
||
|
// Prefix to prepend to the secret in the metadata header
|
||
|
// if no prefix is set, the default is to use no prefix
|
||
|
string header_prefix = 3;
|
||
|
}
|