Replies: 2 comments
|
@RamyaSaba first of all, issues are not supposed to be used for questions. "This project" is open source software that does not implement TLS. You can provide a fix, asking others to fix something you need is not how open source software works. |
0 replies
|
Fixed in #750 by @eglitobias, scheduled to ship some time soon in |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Question
Can this project provide a fix so that
tls_certsends the full certificate chain (leaf + intermediate CA), not only the first PEM?We use mTLS from Fluentd (
fluent-plugin-rabbitmq/fluent-plugin-amqp) to RabbitMQ. Certificates are issued by an Intermediate CA (cert-manager / Kubernetes TLS secret):tls.crt= leaf, then intermediate(s)tls.key= leaf private keyca.crt= Root CA onlyThe broker trusts the Root only. For the handshake to succeed, the client needs to present the Intermediate as well.
What happens today
tls_certis loaded here:https://github.com/ruby-amqp/bunny/blob/2.14.4/lib/bunny/transport.rb
All reactions