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
Is your feature request related to a problem? Please describe.
The s3 config block supports an insecure parameter which disables TLS completely. For environments with self-signed certificates it would be nice to support insecure_skip_verify as well. This would enable TLS but not verify the certificate.
Describe the solution you'd like
Add insecure_skip_verify to not verify certificates.
Describe alternatives you've considered
You can probably work around this by adding the self-signed certificates to your authority store, but this isn't always straight-forward.
Is your feature request related to a problem? Please describe.
The s3 config block supports an
insecure
parameter which disables TLS completely. For environments with self-signed certificates it would be nice to supportinsecure_skip_verify
as well. This would enable TLS but not verify the certificate.Describe the solution you'd like
Add
insecure_skip_verify
to not verify certificates.Describe alternatives you've considered
You can probably work around this by adding the self-signed certificates to your authority store, but this isn't always straight-forward.
Additional context
Example code to achieve this using minio-go: minio/minio-go#1019 (comment)
fyi, Loki has this option: https://github.com/grafana/loki/blob/main/pkg/storage/bucket/http/config.go#L12
The text was updated successfully, but these errors were encountered: