Maximizing Terraform modules for platform engineering
thenewstack.io
Maximizing Terraform modules for platform engineering
1–8 of 8 posts
Re: Maximizing Terraform modules for platform engineering
#2Re: Maximizing Terraform modules for platform engineering
#3Re: Maximizing Terraform modules for platform engineering
#4It’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.
Re: Maximizing Terraform modules for platform engineering
#5Maybe 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.
Re: Maximizing Terraform modules for platform engineering
#6It’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.
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.
Re: Maximizing Terraform modules for platform engineering
#7It’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.
I, with 5-6 years of TF experience didn’t get anything from this at all
Re: Maximizing Terraform modules for platform engineering
#8I’ve used Terraform modules for my personal infrastructure to keep things separated. They work fine for that. 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-looki…