Skip to content

Commit 928ce49

Browse files
committed
Block all requests to cloudwatch logs rather than resource filtering when deny is enabled.
1 parent 7d8a279 commit 928ce49

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 7.1.12
4+
* Block all requests to cloudwatch logs rather than resource filtering when deny is enabled.
5+
36
## 7.1.11
47
* Ignore specific tag changes
58

iam-swarm.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ data "aws_iam_policy_document" "deny-put-log-events" {
6161
statement {
6262
effect = "Deny"
6363
actions = ["logs:PutLogEvents"]
64-
resources = ["arn:aws:logs:::log-group:${local.dns_name}:log-stream:*"]
64+
resources = ["*"]
6565
}
6666
}
6767

0 commit comments

Comments
 (0)