Skip to content

Commit 1dca2bc

Browse files
committed
feat: allow inclusion of image copy to pipeline
Support both codepipeline and pipelines
1 parent 6a81327 commit 1dca2bc

13 files changed

+4390
-1312
lines changed

.gitignore

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const project = new CdklabsConstructLibrary({
3636
repositoryUrl: 'https://github.com/cdklabs/cdk-ecr-deployment', /* The repository is the location where the actual code for your package lives. */
3737
gitignore: [
3838
'cdk.out/',
39+
'lambda/out',
3940
], /* Additional entries to .gitignore. */
4041
npmignore: [
4142
'/cdk.out',

API.md

+322
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lambda/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ go 1.15
44

55
require (
66
github.com/aws/aws-lambda-go v1.29.0
7-
github.com/aws/aws-sdk-go-v2 v1.21.0
7+
github.com/aws/aws-sdk-go-v2 v1.32.4
88
github.com/aws/aws-sdk-go-v2/config v1.18.37
9+
github.com/aws/aws-sdk-go-v2/service/codepipeline v1.36.3
910
github.com/aws/aws-sdk-go-v2/service/ecr v1.17.3
1011
github.com/aws/aws-sdk-go-v2/service/s3 v1.35.0
1112
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.19.10
@@ -15,5 +16,4 @@ require (
1516
github.com/pkg/errors v0.9.1
1617
github.com/sirupsen/logrus v1.9.3
1718
github.com/stretchr/testify v1.8.4
18-
github.com/tchap/go-patricia v2.3.0+incompatible // indirect
1919
)

0 commit comments

Comments
 (0)