Skip to content

Commit

Permalink
NOBUG: Update regex. (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
marklise authored Oct 30, 2023
1 parent b4c26d1 commit 503974c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/src/roles.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ resource "aws_iam_role_policy" "databaseReadRolePolicy" {
"dynamodb:PutItem"
],
"Resource": [
"${aws_dynamodb_table.ar_table_name_cache.arn}/*",
"${aws_dynamodb_table.ar_table.arn}/*"
"${aws_dynamodb_table.ar_table_name_cache.arn}*",
"${aws_dynamodb_table.ar_table.arn}*"
]
},
{
Expand Down

0 comments on commit 503974c

Please sign in to comment.