Skip to content

Commit

Permalink
fix(aws-stepfunctions-tasks): fix execution role permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
DaWyz committed Aug 31, 2020
1 parent 3f80ae6 commit b6b9456
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ export class CodeBuildStartBuild extends sfn.TaskStateBase {
actions: [
'codebuild:StartBuild',
'codebuild:StopBuild',
'codebuild:BatchGetBuilds',
'codebuild:BatchGetReports',
],
}),
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@
{
"Action": [
"codebuild:StartBuild",
"codebuild:StopBuild"
"codebuild:StopBuild",
"codebuild:BatchGetBuilds",
"codebuild:BatchGetReports"
],
"Effect": "Allow",
"Resource": {
Expand Down

0 comments on commit b6b9456

Please sign in to comment.