Skip to content

Commit

Permalink
fix(dynamodb): adding the update policy (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
marciocadev authored Jul 15, 2024
1 parent 18a1422 commit b67e215
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dynamodb/dynamodb.tf-aws.w
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ pub class Table_tfaws impl dynamodb_types.ITable {
if ops.contains("put") {
actions.push("dynamodb:PutItem");
}
if ops.contains("update") {
actions.push("dynamodb:UpdateItem");
}
if ops.contains("scan") {
actions.push("dynamodb:Scan");
}
Expand Down

0 comments on commit b67e215

Please sign in to comment.