Skip to content

Commit

Permalink
feat: emit synth project ARN from PDKPipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
agdimech committed Mar 6, 2022
1 parent 27393db commit a569d70
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/aws-prototyping-sdk/src/pdk_pipeline/index.ts
Expand Up @@ -110,4 +110,13 @@ export class PDKPipeline extends CodePipeline {
value: this.codeRepository.repositoryCloneUrlGrc,
});
}

buildPipeline() {
super.buildPipeline();

new CfnOutput(this, "SynthBuildProjectArn", {
exportName: "SynthBuildProjectArn",
value: this.synthProject.projectArn,
});
}
}

0 comments on commit a569d70

Please sign in to comment.