FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Pulumi Has a Free Infrastructure-as-Code Tool — Use TypeScript Instead of YAML
How-ToDevOps

Pulumi Has a Free Infrastructure-as-Code Tool — Use TypeScript Instead of YAML

via Dev.to DevOpsAlex Spinov3h ago

Terraform uses HCL. Pulumi uses TypeScript, Python, Go, or C#. Loops, conditionals, functions — real programming for real infrastructure. What is Pulumi? Pulumi is an infrastructure-as-code platform that lets you define cloud resources using general-purpose programming languages. No YAML, no HCL — just code you already know. Why Pulumi 1. Real Programming Languages import * as pulumi from " @pulumi/pulumi " ; import * as aws from " @pulumi/aws " ; // Create a VPC const vpc = new aws . ec2 . Vpc ( " main " , { cidrBlock : " 10.0.0.0/16 " }); // Create subnets with a loop const subnets = [ " a " , " b " , " c " ]. map (( az , i ) => new aws . ec2 . Subnet ( `subnet- ${ az } ` , { vpcId : vpc . id , cidrBlock : `10.0. ${ i } .0/24` , availabilityZone : `us-east-1 ${ az } ` , }) ); // Conditionally create resources if ( pulumi . getStack () === " production " ) { new aws . rds . Instance ( " db " , { engine : " postgres " , instanceClass : " db.r5.large " , allocatedStorage : 100 , vpcSecu

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
6 views

Related Articles

Blog 15: SDLC Phase 4 — Testing
How-To

Blog 15: SDLC Phase 4 — Testing

Medium Programming • 2h ago

Before We Write a Single Data Structure, We Need to Talk
How-To

Before We Write a Single Data Structure, We Need to Talk

Medium Programming • 3h ago

How-To

How to implement the Outbox pattern in Go and Postgres

Lobsters • 4h ago

The Hidden Algorithm Behind Google Maps Traffic!!!!
How-To

The Hidden Algorithm Behind Google Maps Traffic!!!!

Medium Programming • 4h ago

Percentage Change: The Most Misused Metric in Data Analysis (And How to Calculate It Correctly)
How-To

Percentage Change: The Most Misused Metric in Data Analysis (And How to Calculate It Correctly)

Medium Programming • 9h ago

Discover More Articles