Releases: simonw/s3-credentials
Releases · simonw/s3-credentials
0.16.1
0.16
0.15
0.14
0.13
- Documentation now lives on a dedicated documentation website: https://s3-credentials.readthedocs.io/ #71
s3-credentials create ... --website --create-bucketnow creates an S3 bucket that is configured to act as a website, withindex.htmlan the index page anderror.htmlas the page used for any errors. #21s3-credentials list-buckets --detailsnow returns the bucket region and the URL to the website, if it is configured to act as a website. #77- Fixed a bug where
list-bucketwould return an error if the bucket (or specified--prefix) was empty. #76
0.12.1
- Using the
--policyor--statementoptions now implies--user-permissions-boundary=none. Previously it was easy to use these options to accidentally create credentials that did not work as expected since they would have a default permissions boundary that locked them down to only being able to access S3. #74 - The
s3-credentials.AmazonS3FullAccessrole created by this tool in order to issue temporary credentials previously used the defaultMaxSessionDurationvalue of 3600, preventing it from creating credentials that could last more than an hour. This has been increased to 12 hours. See this issue comment for instructions on fixing your existing role if this bug is affecting your account. #75
0.12
0.11
- New
set-cors-policyandget-cors-policyfor altering the CORS policy for a bucket, documented here. #47 - Each command now shows example usage in
--help. #67 - New documentation page listing the
--helpfor every command.
0.10
0.9
See Weeknotes: s3-credentials prefix and Datasette 0.60 for extra background on these new features.
- New
--prefix myprefix/option tos3-credentials create, which configures the credentials to only allow access to keys within the S3 bucket that start with the provided prefix. #12 s3-credentials policy --prefix myprefix/command for generating and outputting a JSON policy that is restricted to the specified prefix. You can see examples in the README.- New
list-bucketcommand for listing the contents of a specified bucket. #28 - The
list-users,list-bucketsandlist-bucketcommand all default to outputting an indented JSON array - previously the outputted indented JSON objects separated by newlines. The--nloption can be used to return newline-delimited single line JSON objects. The new--csvand--tsvoptions can be used to return CSV or TSV output. #48