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.
22 lines
784 B
22 lines
784 B
4 years ago
|
syntax = "proto3";
|
||
|
|
||
3 years ago
|
package envoy.extensions.transport_sockets.s2a.v3;
|
||
4 years ago
|
|
||
|
import "udpa/annotations/status.proto";
|
||
|
import "validate/validate.proto";
|
||
|
|
||
3 years ago
|
option java_package = "io.envoyproxy.envoy.extensions.transport_sockets.s2a.v3";
|
||
4 years ago
|
option java_outer_classname = "S2aProto";
|
||
|
option java_multiple_files = true;
|
||
|
option (udpa.annotations.file_status).package_version_status = ACTIVE;
|
||
|
|
||
|
// [#not-implemented-hide:]
|
||
|
// Configuration for S2A transport socket. This allows Envoy clients to
|
||
|
// configure how to offload mTLS handshakes to the S2A service.
|
||
|
// https://github.com/google/s2a-core#readme
|
||
|
message S2AConfiguration {
|
||
|
// The address of the S2A. This can be an IP address or a hostname,
|
||
|
// followed by a port number.
|
||
|
string s2a_address = 1 [(validate.rules).string = {min_len: 1}];
|
||
|
}
|