-
Q: Anyone know of guidance/tips/tricks for developing CDK code that can synth CloudFormation templates that work with quick-create links? Caveat: I need to include AWS Lambda functions that cannot be inlined into the template (too much code) so that need to packaged somehow. It's not obvious to me how to do this because CDK assumes using its own deployment bucket to upload the Lambda sources to. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
We are doing exactly what you need in github.com/superwerker/superwerker.
See the "quick install" link on the release page for reference: https://github.com/superwerker/superwerker/releases/tag/v1.1.0 Unfortunately all of this is a bit convoluted. The project above started as a YAML only Cloudformation project and we wanted to use CDK while also keeping it backwards compatible. If anything is unclear, feel free to ask! |
Beta Was this translation helpful? Give feedback.
-
This was a great reference, thank you @bracki ! |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
We are doing exactly what you need in github.com/superwerker/superwerker.
Here's the build script: https://github.com/superwerker/superwerker/blob/main/.github/workflows/release.yml#L36-L53.
I order for that to work:
See the "quick install" link on the release page for reference: https://github.com/superw…