We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d8a279 commit 928ce49Copy full SHA for 928ce49
CHANGES.md
@@ -1,5 +1,8 @@
1
# Change Log
2
3
+## 7.1.12
4
+* Block all requests to cloudwatch logs rather than resource filtering when deny is enabled.
5
+
6
## 7.1.11
7
* Ignore specific tag changes
8
iam-swarm.tf
@@ -61,7 +61,7 @@ data "aws_iam_policy_document" "deny-put-log-events" {
61
statement {
62
effect = "Deny"
63
actions = ["logs:PutLogEvents"]
64
- resources = ["arn:aws:logs:::log-group:${local.dns_name}:log-stream:*"]
+ resources = ["*"]
65
}
66
67
0 commit comments