All- We are working on migrating some confidential & regulatory information from Local UNIX file system to S3.
The files are copied using AWS EC2 instance into S3 using "aws s3 cp--sse aws:kms --sse-kms-key-id....... " command.
What i have noticed is the etag is different from the unix md5sum. It is exactly the same if i don't encrypt the data using kms keys.
I need to validate the upload to make sure data is not corrupt while uploading to S3, how do i validate my file is intact as etag won't match due to encryption.
Any help is really appreciated!
PS: my files are not > 5gb, i am aware of the issue with multipart upload and it is not applicable for me....