Skip to content

Instantly share code, notes, and snippets.

@josep11
Created August 5, 2021 18:50
Show Gist options
  • Save josep11/fcd0d62d75aab88b3f7b11402533affc to your computer and use it in GitHub Desktop.
Save josep11/fcd0d62d75aab88b3f7b11402533affc to your computer and use it in GitHub Desktop.
AWS Policy CRUD to a specific s3 bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::puppeteerscreenshotbucket/*",
"arn:aws:s3:::puppeteerscreenshotbucket"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment