Skip to content

Commit

Permalink
fix: add missing CloudWatch Log Groups permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
dcroote committed Feb 7, 2025
1 parent c974cbe commit 34b3d91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/gold-plums-allow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@api3/airnode-deployer": minor
---

Bump hashicorp/terraform-provider-aws to v5
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ data "aws_iam_policy_document" "cloudwatch_log_policy" {
actions = [
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:ListTagsForResource",
"logs:TagResource",
"logs:UntagResource"
]
resources = ["${aws_cloudwatch_log_group.cloudwatch_log_group.arn}:*"]
}
Expand Down

0 comments on commit 34b3d91

Please sign in to comment.