syntax = "proto3"; package envoy.config.transport_socket.alts.v2alpha; option java_package = "io.envoyproxy.envoy.config.transport_socket.alts.v2alpha"; option go_package = "v2"; // [#protodoc-title: ALTS] import "validate/validate.proto"; // Configuration for ALTS transport socket. This provides Google's ALTS protocol to Envoy. // https://cloud.google.com/security/encryption-in-transit/application-layer-transport-security/ message Alts { // The location of a handshaker service, this is usually 169.254.169.254:8080 // on GCE. string handshaker_service = 1 [(validate.rules).string.min_bytes = 1]; // The acceptable service accounts from peer, peers not in the list will be rejected in the // handshake validation step. If empty, no validation will be performed. repeated string peer_service_accounts = 2; }