Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Nov 24, 2021
1 parent 5570fc7 commit f609ce9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloudtrail/cloudtrail.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ data "aws_iam_policy_document" "cloudtrail_cloudwatch" {
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 f609ce9

Please sign in to comment.