-
-
Save Rud5G/2da147cd503c54896ee79ea4417a95ef to your computer and use it in GitHub Desktop.
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
import * as cdk from 'aws-cdk-lib'; | |
import * as pipelines from 'aws-cdk-lib/pipelines'; | |
import { Construct } from 'constructs'; | |
import { PipelineStage } from '../pipeline-stage/pipeline-stage'; | |
import { environments } from '../pipeline-config/pipeline-config'; | |
export class PipelineStack extends cdk.Stack { | |
constructor(scope: Construct, id: string, props?: cdk.StackProps) { | |
super(scope, id, props); | |
// we create our pipeline for the given branch and repository, | |
// and add the various stages, passing through the config for | |
// feature-dev, staging or production (prod with a manual approval step) | |
// Source & build Stage - The source stage pulls in various types of code from a distributed version control system | |
// https://pipelines.devops.aws.dev/application-pipeline/index.html | |
const pipeline: pipelines.CodePipeline = new pipelines.CodePipeline( | |
this, | |
'PipelineStack', | |
{ | |
crossAccountKeys: true, | |
selfMutation: true, | |
pipelineName: 'serverless-pro-pipeline', | |
synth: new pipelines.ShellStep('Synth', { | |
input: pipelines.CodePipelineSource.gitHub( | |
'leegilmorecode/Serverless-AWS-CDK-Best-Practices-Patterns', | |
'main' | |
), | |
primaryOutputDirectory: './serverless-pro/cdk.out', // these are our immutable build assets | |
// source stage | |
commands: [ | |
'cd ./serverless-pro', | |
'npm ci', | |
'npx cdk synth', | |
'npm run test', | |
], | |
}), | |
} | |
); | |
// add the develop stage on its own without being in the pipeline | |
// note: this is used purely for developer ephemeral environments | |
new PipelineStage(this, `Develop-${environments.develop.stageName}`, { | |
...environments.develop, | |
}); | |
// add the feature-dev stage with the relevant environment config to the pipeline | |
// this is the test stage (beta) | |
const featureDevStage: PipelineStage = new PipelineStage( | |
this, | |
'FeatureDev', | |
{ | |
...environments.featureDev, | |
} | |
); | |
pipeline.addStage(featureDevStage, { | |
post: [ | |
new pipelines.ShellStep('HealthCheck', { | |
envFromCfnOutputs: { | |
HEALTH_CHECK_ENDPOINT: featureDevStage.healthCheckUrl, | |
}, | |
commands: ['curl -Ssf $HEALTH_CHECK_ENDPOINT'], // demo only basic sanity check | |
}), | |
], | |
}); | |
// add the staging stage with the relevant environment config | |
// this is the test stage (gamma) | |
const stagingStage: PipelineStage = new PipelineStage(this, 'Staging', { | |
...environments.staging, | |
}); | |
pipeline.addStage(stagingStage, { | |
post: [ | |
new pipelines.ShellStep('HealthCheck', { | |
envFromCfnOutputs: { | |
HEALTH_CHECK_ENDPOINT: stagingStage.healthCheckUrl, | |
}, | |
commands: ['curl -Ssf $HEALTH_CHECK_ENDPOINT'], // demo only basic sanity check | |
}), | |
], | |
}); | |
// add the prod stage with a manual approval step to the pipeline | |
const prodStage: PipelineStage = new PipelineStage(this, 'Prod', { | |
...environments.prod, | |
}); | |
pipeline.addStage(prodStage, { | |
pre: [ | |
new pipelines.ManualApprovalStep('PromoteToProd'), // manual approval step | |
], | |
post: [ | |
new pipelines.ShellStep('HealthCheck', { | |
envFromCfnOutputs: { | |
HEALTH_CHECK_ENDPOINT: prodStage.healthCheckUrl, | |
}, | |
commands: ['curl -Ssf $HEALTH_CHECK_ENDPOINT'], // demo only basic sanity check | |
}), | |
], | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment