Skip to content

Commit b6dcecc

Browse files
committed
fix(pipeline): correct review URL for qualifier use
1 parent 4720feb commit b6dcecc

File tree

1 file changed

+2
-4
lines changed
  • source/packages/@aws-accelerator/accelerator/lib

1 file changed

+2
-4
lines changed

source/packages/@aws-accelerator/accelerator/lib/pipeline.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1003,9 +1003,7 @@ export class AcceleratorPipeline extends Construct {
10031003
*/
10041004
const reviewLink = `https://${cdk.Stack.of(this).region}.console.${this.getConsoleUrlSuffixForPartition(
10051005
this.props.partition,
1006-
)}/s3/buckets/${this.props.prefixes.bucketName}-pipeline-${cdk.Stack.of(this).account}-${
1007-
cdk.Stack.of(this).region
1008-
}?prefix=AWSAccelerator-Pipel/Diffs/#{codepipeline.PipelineExecutionId}/&region=${
1006+
)}/s3/buckets/${this.pipeline.artifactBucket.bucketName}?prefix=AWSAccelerator-Pipel/Diffs/#{codepipeline.PipelineExecutionId}/&region=${
10091007
cdk.Stack.of(this).region
10101008
}&bucketType=general`;
10111009

@@ -1017,7 +1015,7 @@ export class AcceleratorPipeline extends Construct {
10171015
runOrder: 2,
10181016
additionalInformation: `
10191017
Changes for this execution can be found in accelerator pipeline S3 bucket under Diffs/#{codepipeline.PipelineExecutionId}.
1020-
Use cli command for download: "aws s3 sync ${this.diffS3Uri}/#{codepipeline.PipelineExecutionId} diffs" or follow the link below.`,
1018+
Use cli command for download: "aws s3 sync ${this.pipeline.artifactBucket.bucketName}/#{codepipeline.PipelineExecutionId} diffs" or follow the link below.`,
10211019
notificationTopic,
10221020
externalEntityLink: reviewLink,
10231021
notifyEmails,

0 commit comments

Comments
 (0)