It’s an ad for a tool that claims to generate terraform IaC code based on analysis of application code. Sounds cool if it actually works, but I’m skeptical.
It's open source, why not give it a try to overcome the skepticism.
To clarify, it doesn't magically generate Terraform, it uses concrete Terraform modules that you define and maintain and maps them to resource declarations that are made in the application code using CDKTF.
7 comments
[ 3.5 ms ] story [ 36.1 ms ] threadTo clarify, it doesn't magically generate Terraform, it uses concrete Terraform modules that you define and maintain and maps them to resource declarations that are made in the application code using CDKTF.
Maybe if you work at a shop where you repeat the same thing, thinking of a module hierarchy that allows reuse makes a lot of sense.
But with HCL you’re essentially doomed to copy-paste your configuration anyways, so the takeaway for me is:
If you’re going to copy-paste Terraform code for entire, similar-looking projects, consider using modules.