You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In emissary I am trying to do custom client cert validation in the ext_authz gRPC service. We noticed that the client certificate is not available to the service
Thanks for raising this to our attention. I'll leave this open as a feature request. Since you've already found a solution, it would be awesome if you'd open a PR for this as well. You can join our #emissary-dev channel in our Slack at a8r.io/slack if you want to discuss further.
Describe the bug
In emissary I am trying to do custom client cert validation in the ext_authz gRPC service. We noticed that the client certificate is not available to the service
To Reproduce
log request attributes in ext authz service:
b, err := json.MarshalIndent(req.Attributes, "", " ")
if err == nil {
log.Println("Request Attributes: ")
log.Println((string(b)))
}
Expected behavior
Certificate attribute should be logged:
"certificate": "-----BEGIN%20CERTIFICATE-----.....-----END%20CERTIFICATE-----%0A"
Versions (please complete the following information):
Additional context
to fix:
The text was updated successfully, but these errors were encountered: