Skip to content

Commit

Permalink
Updating README and service_account.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 committed Sep 24, 2023
1 parent b98fad5 commit 7f61e63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ go run main.go --config config.yaml
```

## What is currently supported?
* DynamoDB (DynamoDB streams)
* DynamoDB (via DynamoDB streams)
2 changes: 2 additions & 0 deletions examples/dynamodb/service_account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ resource "aws_iam_policy" "dynamodb_streams_access" {
"dynamodb:GetRecords",
"dynamodb:ListStreams"
],
// Don't want to use "*"? You can specify like this:
// Resource = [ TABLE_ARN, TABLE_ARN + "/stream/*" ]
Resource = "*" # Modify this to restrict access to specific streams or resources
}
]
Expand Down

0 comments on commit 7f61e63

Please sign in to comment.