Used to Yaml #180
-
I haven't got a use-case at the moment but I'm just curious how would you use this repo if you're used to building Cloudformation templates in Yaml? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi Kelvin 👋 We've started a couple of docs in this area. There's a general guide to getting started as well as specific docs for starting a new project and migrating existing stacks. This is something that we'd like to expand more so do let us know if there is anything in particular you would find useful. Something else you might be interested in is the CDK CLI which we're working on in parallel. That has commands to generate some of the boilerplate to help you getting started. In particular, the |
Beta Was this translation helpful? Give feedback.
-
This video describes how to gracefully migrate/adopt a YAML file into a CDK stack. We tried this method in AMIgo (guardian/amigo#598) to great effect and we can recommend it as a process. It's fairly long winded however and we want to build tooling to make this process easier. |
Beta Was this translation helpful? Give feedback.
Hi Kelvin 👋
We've started a couple of docs in this area. There's a general guide to getting started as well as specific docs for starting a new project and migrating existing stacks. This is something that we'd like to expand more so do let us know if there is anything in particular you would find useful.
Something else you might be interested in is the CDK CLI which we're working on in parallel. That has commands to generate some of the boilerplate to help you getting started. In particular, the
init
function can be used to generate thecdk
directory with everything you need to get started. (I've just noticed that the README needs updating to show some of the newer commands - I'll get th…