Skip to content

Instantly share code, notes, and snippets.

@byk0t
Created September 5, 2019 12:53
Show Gist options
  • Save byk0t/72873486eac8fed37b7028ec1651c69a to your computer and use it in GitHub Desktop.
Save byk0t/72873486eac8fed37b7028ec1651c69a to your computer and use it in GitHub Desktop.
AWS IAM policy that Allows Only Scan to a Specific DynamoDB Table
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "SpecificTable",
"Effect": "Allow",
"Action": [
"dynamodb:Scan"
],
"Resource": "arn:aws:dynamodb:eu-central-1:default:table/tableName"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment