-
-
Save OksanaH/c091ea7ed25bd0862688d3bcdd9cef21 to your computer and use it in GitHub Desktop.
CDKPipelinesPipelineStack.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var policyProps = new PolicyStatementProps() | |
{ | |
Actions = new string[] { | |
"codebuild:CreateReportGroup", | |
"codebuild:CreateReport", | |
"codebuild:UpdateReport", | |
"codebuild:BatchPutTestCases", | |
"codebuild:BatchPutCodeCoverages" | |
}, | |
Effect = Effect.ALLOW, | |
Resources = new string[] { reportGroup.ReportGroupArn } | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment