Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Nov 23, 2021
1 parent a0be971 commit 71ae191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloudtrail/cloudwatch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ data "aws_iam_policy_document" "cloudwatch_policy" {
sid = "AWSCloudTrailCreateLogStream"
effect = "Allow"
actions = ["logs:CreateLogStream"]
resources = [local.resources]
resources = local.resources
}

statement {
sid = "AWSCloudTrailPutLogEvents"
effect = "Allow"
actions = ["logs:PutLogEvents"]
resources = [local.resources]
resources = local.resources
}
}

Expand Down

0 comments on commit 71ae191

Please sign in to comment.