-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Labels
Description
I would like S3FS
to pass through a couple of configuration parameters to boto3.client.__init__
(https://boto3.readthedocs.io/en/latest/_modules/boto3/session.html#Session.client):
use_ssl (boolean) -- Whether or not to use SSL. By default, SSL is used. Note that not all services support non-ssl connections.
verify (boolean/string) -- Whether or not to verify SSL certificates. By default SSL certificates are verified.
The reason for this change is to support users of S3-compatible storage outside of AWS that require SSL configuration.
It seems like this will be a straightforward addition to the __init__
method and a corresponding change in the client
property. I can open a pull request.