Skip to content

Commit

Permalink
fix: pipeline id
Browse files Browse the repository at this point in the history
  • Loading branch information
OrdonioSa committed Jun 4, 2021
1 parent a0500dc commit 138bd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CustomExtensionPipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class CustomExtensionPipeline extends Construct {
props.codeArtifactDomain,
props.codeArtifactDomainOwner,
);
const pipeline = new BuildSpecPipeline(scope, name, { buildSpec: customExtensionBuildSpec, ...props });
const pipeline = new BuildSpecPipeline(scope, name + '-pipeline', { buildSpec: customExtensionBuildSpec, ...props });

pipeline.codebuildProject.addToRolePolicy(new PolicyStatement({
actions: ['s3:PutObject', 's3:ListBucket', 's3:GetObject', 's3:DeleteObject'],
Expand Down

0 comments on commit 138bd35

Please sign in to comment.