Skip to content

Commit 2ed476b

Browse files
Fixed syntax issue (#41)
1 parent 50e8129 commit 2ed476b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

autotagging.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ data "aws_iam_policy_document" "auto_tagging_lambda" {
187187
actions = [
188188
"dynamodb:*",
189189
]
190-
Resource = [aws_dynamodb_table.this_oxbow_locking.arn, "arn:aws:dynamodb:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:table/${var.logstore_dynamodb_table_name}"]
190+
resources = [aws_dynamodb_table.this_oxbow_locking.arn, "arn:aws:dynamodb:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:table/${var.logstore_dynamodb_table_name}"]
191191
}
192192
statement {
193193
sid = "s3"

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,6 @@ resource "aws_iam_role" "this_iam_role_lambda_kinesis" {
526526
# The DynamoDb table is used for providing safe concurrent writes to delta
527527
# tables.
528528
resource "aws_dynamodb_table" "this_oxbow_locking" {
529-
count = var.create_dynamodb_table ? 1 : 0
530529
name = var.dynamodb_table_name
531530
billing_mode = "PAY_PER_REQUEST"
532531
# Default name of the partition key hard-coded in delta-rs

0 commit comments

Comments
 (0)