Created
August 2, 2017 00:00
-
-
Save anuragmathur1/29948e50290fc9d937dd3a13098cf78e to your computer and use it in GitHub Desktop.
s3cmd examples to add and remove public-read access for s3 buckets, folders and objects within.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## You may choose to remove --recursive if is required only for the bucket or folder and not for objects within. | |
s3cmd setacl --acl-private --recursive s3://mybucket-name | |
s3cmd setacl --acl-private --recursive s3://mybucket-name/folder-name | |
s3cmd setacl --acl-private --recursive s3://mybucket-name/folder-name/object-name | |
s3cmd setacl --acl-public --recursive s3://mybucket-name | |
s3cmd setacl --acl-public --recursive s3://mybucket-name/folder-name | |
s3cmd setacl --acl-public --recursive s3://mybucket-name/folder-name/object-name |
Thanks! Just used the public recursive object and it saved me a bunch of time :)
Thanks! :D
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
caught this from somewhere on the internet. Thanks for the gist. s3cmd doc is ... you know :P