Created
September 5, 2019 12:53
-
-
Save byk0t/72873486eac8fed37b7028ec1651c69a to your computer and use it in GitHub Desktop.
AWS IAM policy that Allows Only Scan to a Specific DynamoDB Table
This file contains hidden or 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": "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