Skip to content

Commit 3e2760c

Browse files
committed
fixes
1 parent d45294e commit 3e2760c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.tools/test/stacks/plugin/typescript/plugin_stack.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ class PluginStack extends cdk.Stack {
231231
"logs:CreateLogStream",
232232
"logs:PutLogEvents",
233233
],
234-
resources: ["*"],
234+
resources: ["*"], // You might want to restrict this to specific log groups.
235235
}),
236236
);
237237
}
@@ -283,7 +283,7 @@ class PluginStack extends cdk.Stack {
283283
}),
284284
);
285285

286-
// Attach custom policy to allow Lambda to get and put to local logs bucket.
286+
// Attach custom policy to allow Lambda to get and put to admin logs bucket.
287287
executionRole.addToPolicy(
288288
new iam.PolicyStatement({
289289
actions: [

0 commit comments

Comments
 (0)