Pulumi Infrastructure as Code Goes Universal

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • nitric

    Nitric is a multi-language framework for cloud applications with infrastructure from code.

    We've been using Pulumi in the [nitric framework](https://github.com/nitrictech/nitric) for a while now. Originally, we used native solutions like CloudFormation, then looked at options like Terraform. Pulumi ended up being our favorite by far. The docs are awesome and using the features of a language + editor you're already familiar with are pretty appealing. Autocomplete, typesafety, automated testing, etc. make it really productive.

  • terraform-cdk

    Define infrastructure resources using programming constructs and provision them using HashiCorp Terraform

    They're similar in that they both have a way to build a desired state for your infrastructure and some code for executing the changes to make that happen.

    In Terraform you describe the desired state using a fairly limited language called HCL which looks a lot like a config file.

    In Pulumi you describe the state by running some code in a normal language and building objects to describe the state. This means you can use features of normal programming languages to abstract your state more thoroughly - stuff like functions, data structures, loops, etc.

    AWS and Terraform actually have a similar thing to Pulumi called CDK which uses a normal language to build either CloudFormation or HCL. This gives a lot of the benefits of Pulumi, but lets use use a more widely used tool like Terraform underneath.

    https://www.terraform.io/cdktf (still in development)

    https://aws.amazon.com/cdk/

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

  • aws-cdk

    The AWS Cloud Development Kit is a framework for defining cloud infrastructure in code

    They're similar in that they both have a way to build a desired state for your infrastructure and some code for executing the changes to make that happen.

    In Terraform you describe the desired state using a fairly limited language called HCL which looks a lot like a config file.

    In Pulumi you describe the state by running some code in a normal language and building objects to describe the state. This means you can use features of normal programming languages to abstract your state more thoroughly - stuff like functions, data structures, loops, etc.

    AWS and Terraform actually have a similar thing to Pulumi called CDK which uses a normal language to build either CloudFormation or HCL. This gives a lot of the benefits of Pulumi, but lets use use a more widely used tool like Terraform underneath.

    https://www.terraform.io/cdktf (still in development)

    https://aws.amazon.com/cdk/

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts