Created
December 29, 2016 19:18
-
-
Save vibhavsinha/243397da97a98cc627ca7425963ce42d to your computer and use it in GitHub Desktop.
sample IAM permission required for s3 to vdocipher import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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