Skip to content

Commit

Permalink
feat: allow inclusion of image copy to pipeline
Browse files Browse the repository at this point in the history
Support both codepipeline and pipelines
  • Loading branch information
Hi-Fi committed Nov 9, 2024
1 parent 6a81327 commit 1dca2bc
Show file tree
Hide file tree
Showing 13 changed files with 4,390 additions and 1,312 deletions.
1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const project = new CdklabsConstructLibrary({
repositoryUrl: 'https://github.com/cdklabs/cdk-ecr-deployment', /* The repository is the location where the actual code for your package lives. */
gitignore: [
'cdk.out/',
'lambda/out',
], /* Additional entries to .gitignore. */
npmignore: [
'/cdk.out',
Expand Down
322 changes: 322 additions & 0 deletions API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lambda/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ go 1.15

require (
github.com/aws/aws-lambda-go v1.29.0
github.com/aws/aws-sdk-go-v2 v1.21.0
github.com/aws/aws-sdk-go-v2 v1.32.4
github.com/aws/aws-sdk-go-v2/config v1.18.37
github.com/aws/aws-sdk-go-v2/service/codepipeline v1.36.3
github.com/aws/aws-sdk-go-v2/service/ecr v1.17.3
github.com/aws/aws-sdk-go-v2/service/s3 v1.35.0
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.19.10
Expand All @@ -15,5 +16,4 @@ require (
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
github.com/tchap/go-patricia v2.3.0+incompatible // indirect
)
Loading

0 comments on commit 1dca2bc

Please sign in to comment.