this post was submitted on 25 Aug 2023
221 points (98.3% liked)

Technology

58011 readers
4439 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

HashiCorp recently changed Terraform from an open source model to something that requires licensing, so folks got together, forked the code, and created OpenTF.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 1 year ago

How much do people contribute to Terraform itself as opposed to a Terraform provider, I wonder? I'm biased because I've personally contributed to providers (and not Terraform itself), but I perceive providers to really be the meat of the product. For the most part, Terraform largely is just a framework for reconciling resources, but most actual functionality is in those resources themselves, for which all functionality is provided by the provider. e.g., if I wanna make a load balancer and a bunch of VMs, Terraform provides the glue that loads providers and can specify the dependency of the VMs on the LB, but the whole creating of the VMs and LB as well as the diffing and updating are all in the provider.

That's not to excuse what HashiCorp did, but just I suspect a lot of what people view as "Terraform" isn't actually the part that HashiCorp controls.