Skip to content

Commit

Permalink
Merge pull request #1 from NIT-Administrative-Systems/cw-permissions
Browse files Browse the repository at this point in the history
add :* to cloudwatch log arn in IAM (terraform no longer adds)
  • Loading branch information
cecolby11 authored Oct 16, 2020
2 parents 901cb21 + cf54084 commit 086151d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda_security.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "aws_iam_policy_document" "lambda_access_policy" {
statement {
effect = "Allow"
actions = ["logs:CreateLogStream", "logs:PutLogEvents"]
resources = [aws_cloudwatch_log_group.lambda_log_group.arn]
resources = ["${aws_cloudwatch_log_group.lambda_log_group.arn}:*"]
}

statement {
Expand Down

0 comments on commit 086151d

Please sign in to comment.