Skip to content

Instantly share code, notes, and snippets.

@vibhavsinha
Created December 29, 2016 19:18
Show Gist options
  • Save vibhavsinha/243397da97a98cc627ca7425963ce42d to your computer and use it in GitHub Desktop.
Save vibhavsinha/243397da97a98cc627ca7425963ce42d to your computer and use it in GitHub Desktop.
sample IAM permission required for s3 to vdocipher import
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "vdocipherS3VideoImport",
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::NAME_OF_BUCKET/*",
"arn:aws:s3:::NAME_OF_BUCKET"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment