Friday, November 18, 2016

Give permission of the AWS S3 bucket

{
    "Version": "2008-10-17",
    "Statement": [
        {
            "Sid": "AllowPublicRead",
            "Effect": "Allow",
            "Principal": {
                "AWS": "*"
            },
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::mybucket5001/*"
        }
    ]
}

No comments:

Post a Comment