diff --git a/envoy/api/v2/core/grpc_service.proto b/envoy/api/v2/core/grpc_service.proto index 02fb63ff..562d999b 100644 --- a/envoy/api/v2/core/grpc_service.proto +++ b/envoy/api/v2/core/grpc_service.proto @@ -93,7 +93,9 @@ message GrpcService { // [#next-free-field: 10] message StsService { // URI of the token exchange service that handles token exchange requests. - string token_exchange_service_uri = 1 [(validate.rules).string = {uri: true}]; + // [#comment:TODO(asraa): Add URI validation when implemented. Tracked by + // https://github.com/envoyproxy/protoc-gen-validate/issues/303] + string token_exchange_service_uri = 1; // Location of the target service or resource where the client // intends to use the requested security token. diff --git a/envoy/api/v3alpha/core/grpc_service.proto b/envoy/api/v3alpha/core/grpc_service.proto index 68aac395..1b1426a0 100644 --- a/envoy/api/v3alpha/core/grpc_service.proto +++ b/envoy/api/v3alpha/core/grpc_service.proto @@ -130,7 +130,9 @@ message GrpcService { "envoy.api.v2.core.GrpcService.GoogleGrpc.CallCredentials.StsService"; // URI of the token exchange service that handles token exchange requests. - string token_exchange_service_uri = 1 [(validate.rules).string = {uri: true}]; + // [#comment:TODO(asraa): Add URI validation when implemented. Tracked by + // https://github.com/envoyproxy/protoc-gen-validate/issues/303] + string token_exchange_service_uri = 1; // Location of the target service or resource where the client // intends to use the requested security token.