Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit eb0444c

Browse files
Update
1 parent 81448d1 commit eb0444c

File tree

1 file changed

+26
-8
lines changed
  • content/en/user-guide/aws/codepipeline

1 file changed

+26
-8
lines changed

content/en/user-guide/aws/codepipeline/index.md

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,39 @@ tags: ["Pro image"]
1111
CodePipeline is a continuous integration/continuous delivery (CI/CD) service offered by AWS.
1212
CodePipeline can be used to create automated pipelines that handle the build, test and deployment of software.
1313

14-
With LocalStack, you can ...
15-
14+
With LocalStack, you can create, manage and execute pipelines.
15+
CodePipeline on LocalStack support a variety of actions that integrate with S3, CodeBuild and CodeConnections.
1616

1717
## Getting Started
1818

1919

20+
2021
## Actions
2122

22-
LocalStack supports following actions
23+
CodePipeline on LocalStack supports the following actions:
24+
25+
### S3 Source
26+
27+
The [S3 Source](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-S3.html) action is used to specify an S3 bucket object as input to the pipeline.
28+
29+
### S3 Deploy
30+
31+
The [S3 Deploy](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-S3Deploy.html) action is used to upload artifacts to a given S3 bucket as the output of the pipeline.
32+
33+
### CodeConnections Source
34+
35+
The [CodeConnections Source](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-CodestarConnectionSource.html) action is used to specify a VCS repo as the input to the pipeline.
36+
37+
Currently LocalStack supports integration with [GitHub](https://github.com/).
38+
Please set the environment configuration option `CODEPIPELINE_GH_TOKEN` with the GitHub Personal Access Token to be able to fetch private repositories.
39+
40+
### CodeBuild Source and Test
2341

24-
| Type | Name |
25-
| ---- | ---- |
26-
| Source | [Amazon S3](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-S3.html) |
42+
The [CodeBuild Source and Test](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-CodeBuild.html) action can be used to start a CodeBuild container and run the given buildspec.
2743

2844
## Limitations
2945

30-
- [V2 pipeline types](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html) are not supported
31-
- [Rollbacks and stage retries](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-stages.html) is not available
46+
- [V2 pipeline types](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html) are not supported.
47+
- [Rollbacks and stage retries](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-stages.html) are not available.
48+
- [Triggers](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-triggers.html) are not implemented.
49+
Pipelines are executed only when [CreatePipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreatePipeline.html) and [StartPipelineExecution](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StartPipelineExecution.html) are invoked.

0 commit comments

Comments
 (0)