-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(aws-codepipeline, aws-cloudformation): support cross-region Clou…
…dFormation pipeline action (#1152) Allows CloudFormation CodePipeline actions to be executed across regions. https://aws.amazon.com/about-aws/whats-new/2018/11/aws-codepipeline-now-supports-cross-region-actions
- Loading branch information
Showing
11 changed files
with
707 additions
and
34 deletions.
There are no files selected for viewing
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
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
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
68 changes: 68 additions & 0 deletions
68
packages/@aws-cdk/aws-codepipeline/lib/cross-region-scaffold-stack.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import s3 = require('@aws-cdk/aws-s3'); | ||
import cdk = require('@aws-cdk/cdk'); | ||
import crypto = require('crypto'); | ||
|
||
/** | ||
* Construction properties for {@link CrossRegionScaffoldStack}. | ||
*/ | ||
export interface CrossRegionScaffoldStackProps { | ||
/** | ||
* The AWS region this Stack resides in. | ||
*/ | ||
region: string; | ||
|
||
/** | ||
* The AWS account ID this Stack belongs to. | ||
* | ||
* @example '012345678901' | ||
*/ | ||
account: string; | ||
} | ||
|
||
/** | ||
* A Stack containing resources required for the cross-region CodePipeline functionality to work. | ||
*/ | ||
export class CrossRegionScaffoldStack extends cdk.Stack { | ||
/** | ||
* The name of the S3 Bucket used for replicating the Pipeline's artifacts into the region. | ||
*/ | ||
public readonly replicationBucketName: string; | ||
|
||
constructor(parent?: cdk.App, props: CrossRegionScaffoldStackProps = defaultCrossRegionScaffoldStackProps()) { | ||
super(parent, generateStackName(props), { | ||
env: { | ||
region: props.region, | ||
account: props.account, | ||
}, | ||
}); | ||
|
||
const replicationBucketName = generateUniqueName('cdk-cross-region-codepipeline-replication-bucket-', | ||
props.region, props.account, false, 12); | ||
|
||
new s3.Bucket(this, 'CrossRegionCodePipelineReplicationBucket', { | ||
bucketName: replicationBucketName, | ||
}); | ||
this.replicationBucketName = replicationBucketName; | ||
} | ||
} | ||
|
||
function generateStackName(props: CrossRegionScaffoldStackProps): string { | ||
return `aws-cdk-codepipeline-cross-region-scaffolding-${props.region}`; | ||
} | ||
|
||
function generateUniqueName(baseName: string, region: string, account: string, | ||
toUpperCase: boolean, hashPartLen: number = 8): string { | ||
const sha256 = crypto.createHash('sha256') | ||
.update(baseName) | ||
.update(region) | ||
.update(account); | ||
|
||
const hash = sha256.digest('hex').slice(0, hashPartLen); | ||
|
||
return baseName + (toUpperCase ? hash.toUpperCase() : hash.toLowerCase()); | ||
} | ||
|
||
// purely to defeat the limitation that a required argument cannot follow an optional one | ||
function defaultCrossRegionScaffoldStackProps(): CrossRegionScaffoldStackProps { | ||
throw new Error('The props argument when creating a CrossRegionScaffoldStack is required'); | ||
} |
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
Oops, something went wrong.