Short, sweet and to the point. Great work! I've noticed you've stopped making videos, while that is a bummer, do note that you've helped me a TON. If we ever meet, would love to buy you a beer man, Cheers and have a blessed day!
This video sadly left me more confused than I was previously. Anyone knowing what you were talking about will probably not need this tutorial. Can't we keep it simple, for us simple-minded folk? 1. Create a bucket, 2. Add some files, 3. Create a bunch of private Users with password access to view, add, delete, create folders, etc. Job done! Other than that, your video was great!
Thanks for great video, in my case I also had to configure BUCKET policy to allow specific user specific action: { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::xxxx:user/some-bucket-user" }, "Action": "s3:PutObject", "Resource": "arn:aws:s3:::myawesomebuckett/*" } ] }
Ln 8, Col 16Invalid Action: The action s3:ListBuckets does not exist. Did you mean s3:ListAllMyBuckets? The API called ListBuckets authorizes against the IAM action s3:ListAllMyBuckets. Learn more
Short, sweet and to the point. Great work! I've noticed you've stopped making videos, while that is a bummer, do note that you've helped me a TON. If we ever meet, would love to buy you a beer man, Cheers and have a blessed day!
Awesome you saved my day. This is what I needed. Thank you so much.
Thank you. But it appears for Statamic you need to turn on ACLs.
Thx, you saved me a shitload of time!
You did a good job but i didn’t see where you went to pull out the CLI to paste the code
This video sadly left me more confused than I was previously. Anyone knowing what you were talking about will probably not need this tutorial. Can't we keep it simple, for us simple-minded folk? 1. Create a bucket, 2. Add some files, 3. Create a bunch of private Users with password access to view, add, delete, create folders, etc. Job done! Other than that, your video was great!
Thanks for great video, in my case I also had to configure BUCKET policy to allow specific user specific action:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::xxxx:user/some-bucket-user"
},
"Action": "s3:PutObject",
"Resource": "arn:aws:s3:::myawesomebuckett/*"
}
]
}
Ln 8, Col 16Invalid Action: The action s3:ListBuckets does not exist. Did you mean s3:ListAllMyBuckets? The API called ListBuckets authorizes against the IAM action s3:ListAllMyBuckets. Learn more