Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 284 Bytes

File metadata and controls

15 lines (12 loc) · 284 Bytes

IAM

Basic policy for allowing one bucket

{
  "Statement": [
    {
      "Action": "s3:*",
      "Effect": "Allow",
      "Resource": ["arn:aws:s3:::MY_BUCKET", "arn:aws:s3:::MY_BUCKET/*"]
    }
  ]
}

Replace MY_BUCKET with your bucket name