Skip to content

Instantly share code, notes, and snippets.

@matthewtckr
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewtckr/eff2455136d67c6bcc00 to your computer and use it in GitHub Desktop.
Save matthewtckr/eff2455136d67c6bcc00 to your computer and use it in GitHub Desktop.
PDI-7538: S3 Steps with IAM Users
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": "arn:aws:s3:::my_bucket"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::my_bucket/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment