• HashiCorp is moving its products previously licensed as Open Source away from it to Business Source License (BSL) moving forward
  • Terraform is a popular Infrastructure as Code tool used for provisioning cloud resources like AWS, Azure among others
  • Terraform version 1.5.5 and earlier are still open source
  • there is a push for a community maintained open source fork if this decision is not reversed, OpenTF

Gruntwork response on the problem with BSL

  • We will see how this plays out… Terraform is awesome but the product would not be very popular today if open source developers hadn’t worked for 10 years for free to maintain and update it.

    Now they take all their work and decides it’s not open source anymore, because hashicorp needs to make money.

      •  1984   ( @1984@lemmy.today ) 
        link
        fedilink
        10
        edit-2
        10 months ago

        I used pulumi but it’s much worse than terraform. I didn’t used to think so before I learned terraform however.

        My main reason to dislike pulumi is that you have to work around it’s async behavior in python. Maybe it’s better and more natural if you use typescript, but I had to constantly wrap methods in Outputs and other things to get the code to work.

        I had to adapt my code to how pulumi worked all the time. With terraform, I just write it and it works.

    • I wonder how many of those “open source developers”, are actually employees of the same companies HashiCorp is accusing now of competing against them. No company is going to pay their employees to contribute to a piece of software, that they then have to buy a license for… so this can very well mean that HashiCorp is cutting off contributions from the same people most capable of contributing in the first place.

      •  1984   ( @1984@lemmy.today ) 
        link
        fedilink
        6
        edit-2
        10 months ago

        Not so “just”. Terraform open source version went into a fork. Who will work on that one and who will continue with the hashicorp version? It’s a split in the community now, and I bet most devs will continue on the hashicorp version.

        •  jarfil   ( @jarfil@beehaw.org ) 
          link
          fedilink
          9
          edit-2
          10 months ago

          I bet most devs will continue on the hashicorp version

          Only the hobbyist ones. Every dev paid for by a company using the products, will be on the OpenSource fork.

          It’s something companies often forget: open source, and the GPL in particular, is a way for companies to cooperate. Use the AGPL if you want to prevent unfair server-side competition. Switching to the BSL is restricting cooperation to only those with less experience.

          PS: IANAL, but by reading MariaDB’s guidelines for the BSL, HashiCorp may not even have applied it correctly.

  •  jet   ( @jet@hackertalks.com ) 
    link
    fedilink
    English
    1210 months ago

    For the people who continue to work on the open source fork of terraform, can HashiCorp pull their commits into their closed source BSL fork?

    I would assume not, but I am curious if there’s some weird workaround of their previous license that they still own contributions

    •  robyoung   ( @robyoung@beehaw.org ) 
      link
      fedilink
      English
      510 months ago

      The integrations with other services are implemented in plugins which are separate programs, that are installed separately, and communicate with the core over RPC. I would imagine these plugins can continue to be licensed however their owners choose. I think this license change just applies to core.

    •  NaN   ( @Bitrot@lemmy.sdf.org ) 
      link
      fedilink
      English
      410 months ago

      I’m not as familiar with MPLv2 but I don’t think they can with contributions to the fork. Since those contributions won’t be part of the original “we own all your work” agreement they couldn’t simply close source those contributions.

      •  jarfil   ( @jarfil@beehaw.org ) 
        link
        fedilink
        English
        110 months ago

        From the BSL FAQ:

        Q: I have written a code patch to a BSL project and would like the BSL vendor to maintain the code as part of the BSL project. How do I contribute it?

        A: License your code using the “new BSD” license or dedicate it to the public domain. Code contributions under “new BSD” is compatible with BSL. See BSD on Wikipedia.

        That would seem to rule out the MPLv2.

        •  NaN   ( @Bitrot@lemmy.sdf.org ) 
          link
          fedilink
          English
          2
          edit-2
          10 months ago

          That is for continuing contributions to the commercial project, the fork should be using the old license not the BSL.

          If HashiCorp is unwilling to switch Terraform back to an open source license, we propose to fork the legacy MPL-licensed Terraform

          The question was if HashiCorp could take contributions to the fork and put them into their commercial product.

      • Terraform is great automation, but it really shines over scripts in a few ways:

        • intrinsic documentation for your infrastructure
        • much less brittle to differences in the initial state
        • changing your setup later doesn’t require any new script logic, just a simple config change
        • much better support for collaborative editing