File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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.
528528resource "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
You can’t perform that action at this time.
0 commit comments