Replies: 1 comment
-
CDK is incredible at creating CICD, it's one of the biggest reasons to use CDK! Infrastructure that meets your requirements could be configured entirely through Pipelines https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines-readme.html |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We use Cloudformation heavily in our business. We're planning to change the process with our "next generation", and we'd like something with better customization options than CF alone allows through conditional statements... It seems right up the alley of CDK...
Except CDK is only ever discussed as a deployment tool from a command-line perspective.. We'd ideally like to do something like:
We currently do this exact process entirely in a lambda, but it has to select from predefined CF templates with appropriate conditionals and it passes in the overrides necessary... but we really want to swap to dynamic CF templates so we can have more complex situations without making new CF Templates for each combination of features.
Can the CDK be leveraged in this way?
Would it continue to be supported? (with the obvious limitations that we lose some of the help CDK provides)
It looks like we can use CDK to make the template, but the only option is to write to disk... Which should be fine since we would likely need to upload the file to S3 for CloudFormation to reference. I'm willing to go that route, but I don't want to make a system that is really against the CDK's design, and is likely to break in the near future.
Thanks for your thoughts.
-Lee
Beta Was this translation helpful? Give feedback.
All reactions