DEV Community

Discussion on: Building a Serverless JAMstack ECommerce Store with Gatsby & AWS Amplify

Collapse
 
whiteman_james profile image
James Whiteman

Another nice overview, thanks Nader.
S3 storage is giving me 403 when I try to build, I just gave the bucket the shotgun approach with the following

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": "*",
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::<bucket>/*"
        }
    ]
}