Skip to content

Commit

Permalink
fix(GH-2): Access array items using square brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
gavanlamb committed Sep 14, 2024
1 parent 920d682 commit a58d049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dynamodb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ data "aws_iam_policy_document" "lock_table" {
]
resources = [
aws_dynamodb_table.lock_table.arn,
one(aws_dynamodb_table.lock_table.replica.*.arn)
one(aws_dynamodb_table.lock_table.replica[*].arn)
]
}
}

0 comments on commit a58d049

Please sign in to comment.