Home > Software design >  S3 clone a bucket with all the permissions and options
S3 clone a bucket with all the permissions and options

Time:09-23

it is possible to grab one bucket and make an exact copy of the bucket permissions and attributes?

I have tried

aws s3 sync

But only copies the content, not the KMS key, and other attributes. Thanks

CodePudding user response:

This issue was raised 7 years ago and no AWS supported tool addresses your need (see issue on github) However, you can use other community tools, such as s3s3mirror. I am not sure that KMS key configuration will be synced too.

  • Related