Skip to content

Instantly share code, notes, and snippets.

@kokigit
Created June 16, 2018 06:31
Show Gist options
  • Save kokigit/37dedc81f57a380f21a2dace38869a53 to your computer and use it in GitHub Desktop.
Save kokigit/37dedc81f57a380f21a2dace38869a53 to your computer and use it in GitHub Desktop.
allow all s3 actions to bucket and bucket objects IAM policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "myproject",
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::myproject-production",
"arn:aws:s3:::myproject-production/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment