Creating an S3 Bucket and Setting IAM Permissions

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ม.ค. 2025

ความคิดเห็น • 8

  • @dancinglazer1628
    @dancinglazer1628 2 หลายเดือนก่อน +1

    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!

  • @SubhashKumar-do6ld
    @SubhashKumar-do6ld 2 ปีที่แล้ว +1

    Awesome you saved my day. This is what I needed. Thank you so much.

  • @AliAwwad
    @AliAwwad 11 หลายเดือนก่อน

    Thank you. But it appears for Statamic you need to turn on ACLs.

  • @FreddieOmega
    @FreddieOmega ปีที่แล้ว

    Thx, you saved me a shitload of time!

  • @Roberto-mr8iy
    @Roberto-mr8iy 2 ปีที่แล้ว

    You did a good job but i didn’t see where you went to pull out the CLI to paste the code

  • @tartanrambo
    @tartanrambo 3 ปีที่แล้ว +4

    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!

  • @TeodorGlaz
    @TeodorGlaz 2 หลายเดือนก่อน

    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/*"
    }
    ]
    }

  • @Тати-х1й
    @Тати-х1й 2 ปีที่แล้ว

    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