Skip to content

Commit

Permalink
docs: Update DynamoDB BatchGetItem permissions (#2542)
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Trejo <[email protected]>
  • Loading branch information
TremaMiguel authored Apr 14, 2022
1 parent b342436 commit bd4cb74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/online-stores/dynamodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Feast requires the following permissions in order to execute commands for Dynamo
| ----------------------- | ----------------------------------------------------------------------------------- | ------------------------------------------------- |
| **Apply** | <p>dynamodb:CreateTable</p><p>dynamodb:DescribeTable</p><p>dynamodb:DeleteTable</p> | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
| **Materialize** | dynamodb.BatchWriteItem | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
| **Get Online Features** | dynamodb.GetItem | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
| **Get Online Features** | dynamodb.BatchGetItem | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
The following inline policy can be used to grant Feast the necessary permissions:
Expand All @@ -40,7 +40,7 @@ The following inline policy can be used to grant Feast the necessary permissions
"dynamodb:DescribeTable",
"dynamodb:DeleteTable",
"dynamodb:BatchWriteItem",
"dynamodb:GetItem"
"dynamodb:BatchGetItem"
],
"Effect": "Allow",
"Resource": [
Expand Down

0 comments on commit bd4cb74

Please sign in to comment.