@@ -49,9 +49,10 @@ them. You can deploy to the same account and Region, or to a different one,
49
49
with the same amount of code. The * CDK Pipelines* library takes care of the
50
50
details.
51
51
52
- CDK Pipelines supports multiple * deployment engines* (see below), and comes with
53
- a deployment engine that deploys CDK apps using AWS CodePipeline. To use the
54
- CodePipeline engine, define a ` CodePipeline ` construct. The following
52
+ CDK Pipelines supports multiple * deployment engines* (see
53
+ [ Using a different deployment engine] ( #using-a-different-deployment-engine ) ),
54
+ and comes with a deployment engine that deploys CDK apps using AWS CodePipeline.
55
+ To use the CodePipeline engine, define a ` CodePipeline ` construct. The following
55
56
example creates a CodePipeline that deploys an application from GitHub:
56
57
57
58
``` ts
@@ -225,9 +226,10 @@ const originalPipeline = new pipelines.CdkPipeline(this, 'Pipeline', {
225
226
226
227
## Definining the pipeline
227
228
228
- This section of the documentation describes the AWS CodePipeline engine, which
229
- comes with this library. If you want to use a different deployment engine, read
230
- the section * Using a different deployment engine* below.
229
+ This section of the documentation describes the AWS CodePipeline engine,
230
+ which comes with this library. If you want to use a different deployment
231
+ engine, read the section
232
+ [ Using a different deployment engine] ( #using-a-different-deployment-engine ) below.
231
233
232
234
### Synth and sources
233
235
@@ -1211,6 +1213,17 @@ pipeline.addStage(stage, {
1211
1213
** Note** : Manual Approvals notifications only apply when an application has security
1212
1214
check enabled.
1213
1215
1216
+ ## Using a different deployment engine
1217
+
1218
+ CDK Pipelines supports multiple * deployment engines* , but this module vends a
1219
+ construct for only one such engine: AWS CodePipeline. It is also possible to
1220
+ use CDK Pipelines to build pipelines backed by other deployment engines.
1221
+
1222
+ Here is a list of CDK Libraries that integrate CDK Pipelines with
1223
+ alternative deployment engines:
1224
+
1225
+ * GitHub Workflows: [ ` cdk-pipelines-github ` ] ( https://github.com/cdklabs/cdk-pipelines-github )
1226
+
1214
1227
## Troubleshooting
1215
1228
1216
1229
Here are some common errors you may encounter while using this library.
0 commit comments