Forked from anuragmathur1/add-remove-public-read-s3.txt
Created
July 20, 2020 06:42
-
-
Save mindesik/9bd8932fd961c7f5d2b5d90193dc68aa 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 hidden or 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment