Skip to content

Commit ff6af24

Browse files
HenryNguyen5npalm
authored andcommitted
Add wildcard for log events in arbitrary streams (#145)
1 parent fbbf22f commit ff6af24

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/runner-binaries-syncer/policies/lambda-cloudwatch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"Effect": "Allow",
66
"Action": ["logs:CreateLogStream", "logs:PutLogEvents"],
7-
"Resource": "${log_group_arn}"
7+
"Resource": "${log_group_arn}*"
88
}
99
]
1010
}

modules/runners/policies/lambda-cloudwatch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"Effect": "Allow",
66
"Action": ["logs:CreateLogStream", "logs:PutLogEvents"],
7-
"Resource": "${log_group_arn}"
7+
"Resource": "${log_group_arn}*"
88
}
99
]
1010
}

modules/webhook/policies/lambda-cloudwatch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"Effect": "Allow",
66
"Action": ["logs:CreateLogStream", "logs:PutLogEvents"],
7-
"Resource": "${log_group_arn}"
7+
"Resource": "${log_group_arn}*"
88
}
99
]
1010
}

0 commit comments

Comments
 (0)