-
HTTP Proxy support was recently added (thank you!), but I can't seem to find any way of setting both a TLS context (internal root cert) and a proxy config. My research/experimentation so far:
I might be missing the obvious way to do this, so please let me know if that is the case. If this is a missing feature, I see three different solutions here:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I believe only the CLI currently supports
We could consider this. Really what we'd like to be able to do longer term is have stable If you are using |
Beta Was this translation helpful? Give feedback.
I believe only the CLI currently supports
AWS_CA_BUNDLE
. I've created a feature request to track adding itWe could consider this. Really what we'd like to be able to do longer term is have stable
Connector
traits that allow users to configure a lot more externally so we don't have to expose every config option.If you are using
rustls
you might trySSL_CERT_DIR
orSSL_CERT_FILE
env variables as a workaround which should be supported by that provider (see rustls/rustls-native-certs#16)