matching: add authenticated network input (#20916)
Signed-off-by: Xie Zhihao <zhihao.xie@intel.com> Mirrored from https://github.com/envoyproxy/envoy @ c2b2816ead9aa3569ab3331b24606d55ac0bd8b3pull/626/head
parent
95c9dad925
commit
abed03f725
4 changed files with 40 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||||
|
# DO NOT EDIT. This file is generated by tools/proto_format/proto_sync.py. |
||||||
|
|
||||||
|
load("@envoy_api//bazel:api_build_system.bzl", "api_proto_package") |
||||||
|
|
||||||
|
licenses(["notice"]) # Apache 2 |
||||||
|
|
||||||
|
api_proto_package( |
||||||
|
deps = ["@com_github_cncf_udpa//udpa/annotations:pkg"], |
||||||
|
) |
@ -0,0 +1,29 @@ |
|||||||
|
syntax = "proto3"; |
||||||
|
|
||||||
|
package envoy.extensions.matching.common_inputs.ssl.v3; |
||||||
|
|
||||||
|
import "udpa/annotations/status.proto"; |
||||||
|
|
||||||
|
option java_package = "io.envoyproxy.envoy.extensions.matching.common_inputs.ssl.v3"; |
||||||
|
option java_outer_classname = "SslInputsProto"; |
||||||
|
option java_multiple_files = true; |
||||||
|
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/common_inputs/ssl/v3;sslv3"; |
||||||
|
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
||||||
|
|
||||||
|
// [#protodoc-title: Common SSL Matching Inputs] |
||||||
|
|
||||||
|
// List of comma-delimited URIs in the SAN field of the peer certificate for a downstream. |
||||||
|
// [#extension: envoy.matching.inputs.uri_san] |
||||||
|
message UriSanInput { |
||||||
|
} |
||||||
|
|
||||||
|
// List of comma-delimited DNS entries in the SAN field of the peer certificate for a downstream. |
||||||
|
// [#extension: envoy.matching.inputs.dns_san] |
||||||
|
message DnsSanInput { |
||||||
|
} |
||||||
|
|
||||||
|
// Input that matches the subject field of the peer certificate in RFC 2253 format for a |
||||||
|
// downstream. |
||||||
|
// [#extension: envoy.matching.inputs.subject] |
||||||
|
message SubjectInput { |
||||||
|
} |
Loading…
Reference in new issue