I can grant specific permissions to a specific file easily, like this:
Set-S3ACL -BucketName "bucket" -Key "file.txt"
However, now I'm trying to do it for all the files:
Set-S3ACL -BucketName "bucket" -Key "*"
This does not work and it throws:
Set-S3ACL : The specified key does not exist.
What is the valid syntax in this case?