Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tze Yang Ng committed Oct 26, 2023
1 parent 64bc20f commit 95bcb4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/fluentd/s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ data "aws_iam_policy_document" "s3_logs_policy" {
resource "aws_s3_bucket_policy" "logs" {
count = var.logs_s3_enabled ? 1 : 0

bucket = "${aws_s3_bucket.logs[0].id}"
bucket = aws_s3_bucket.logs[0].id

policy = "${data.aws_iam_policy_document.s3_logs_policy[0].json}"
policy = data.aws_iam_policy_document.s3_logs_policy[0].json
}

data "aws_iam_policy_document" "logs_s3" {
Expand Down

0 comments on commit 95bcb4e

Please sign in to comment.