Skip to content

Instantly share code, notes, and snippets.

@mlabouardy
Created December 1, 2018 11:51
Show Gist options
  • Select an option

  • Save mlabouardy/2941eae0c0a638e57773ec7c17a8ddb1 to your computer and use it in GitHub Desktop.

Select an option

Save mlabouardy/2941eae0c0a638e57773ec7c17a8ddb1 to your computer and use it in GitHub Desktop.
IAM policy to invoke Scan operation on DynamoDB table
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "1",
"Effect": "Allow",
"Action": "dynamodb:Scan",
"Resource": [
"arn:aws:dynamodb:eu-west-3:*:table/movies",
"arn:aws:dynamodb:eu-west-3:*:table/movies/index/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment