-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add config support for S3 ca_path, ca_file, and verify_ssl options … #1376
Conversation
e511f1d
to
b8f0624
Compare
Not sure why Travis S3 failed. May be due to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM mostly -- could you also add the new config params to the https://docs.tiledb.io/en/stable/tutorials/config.html page? We really need to consolidate where these params are listed/documented (but we'll do this in a separate PR at some point).
b8f0624
to
2220b6e
Compare
done |
2220b6e
to
f33611f
Compare
4b1799b
to
85b4e13
Compare
Corresponding to Aws::Client::ClientConfiguration caPath, caFile, and verifySSL struct fields.
- create and utilize certificate files as documented in: https://docs.min.io/docs/how-to-secure-access-to-minio-server-with-tls - use ECDSA cert instead of RSA ref: github.com/minio/minio/issues/6611 - add test certificates to repository - adjust tests to use certs (one each for ca_file and ca_path) or to pass `verify_ssl = false`.
85b4e13
to
7d23cd6
Compare
- create and utilize certificate files as documented in: https://docs.min.io/docs/how-to-secure-access-to-minio-server-with-tls - use ECDSA cert instead of RSA ref: github.com/minio/minio/issues/6611 - add test certificates to repository - adjust tests to use certs (one each for ca_file and ca_path) or to pass `verify_ssl = false`. PR #1376 (cherry picked from commit aa5be3a)
add configuration support for the AWS S3/cURL ca_path, ca_file, and verify_ssl options:
http://sdk.amazonaws.com/cpp/api/LATEST/struct_aws_1_1_client_1_1_client_configuration.html#a668718b2027712b56cc1019161293f9c
test minio with HTTPS: add CI script support, test certificates, and update tests to use certificates or
verify_ssl = false