-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
filestore: document S3 parameters #956
Conversation
I ran into a couple of hitches switching to S3 storage and wanted to document the necessary permissions and how to secure it
@@ -30,7 +30,24 @@ filestore.options: | |||
```yaml | |||
filestore.backend: 's3' | |||
filestore.options: | |||
access_key: '...' | |||
secret_key: '...' |
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.
I don't quite understand why you removed those lines?
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.
Basically because authentication is complicated and there’s a separate discussion point. I didn’t want it to look like that’s required parameter.
filestore.backend: 's3' | ||
filestore.options: | ||
bucket_name: '...' | ||
default_acl: 'private' |
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.
This PR/issue saved the day! I spent hours debugging. It was a matter of default_acl: 'private'
.
Thanks for creating this PR! :)
Closing this PR as it's quite dated. Feel free to comment here if you think we should re-open. |
I ran into a couple of hitches switching to S3 storage and wanted to document the necessary permissions and how to secure it.
Closes #953