fix: Update CloudWatch log group creation deny policy to use wildcard (#2267)

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
Zvika Nadav
2022-10-11 15:28:06 -05:00
committed by GitHub
parent 7f901840c4
commit ac4d549629
2 changed files with 2 additions and 2 deletions

View File

@@ -279,7 +279,7 @@ resource "aws_iam_role" "this" {
{
Action = ["logs:CreateLogGroup"]
Effect = "Deny"
Resource = aws_cloudwatch_log_group.this[0].arn
Resource = "*"
},
]
})