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 Automation API You're Not Using
How-ToDevOps

Pulumi Has a Free Automation API You're Not Using

via Dev.to DevOpsAlex Spinov4h ago

Pulumi's Automation API lets you embed infrastructure-as-code inside your applications. No CLI needed — create, update, and destroy stacks programmatically from TypeScript, Python, or Go. The Free APIs You're Missing 1. Automation API — Programmatic Infrastructure import { LocalWorkspace } from " @pulumi/pulumi/automation " ; async function deployInfra () { const stack = await LocalWorkspace . createOrSelectStack ({ stackName : " production " , projectName : " my-app " , program : async () => { const bucket = new aws . s3 . Bucket ( " my-bucket " , { website : { indexDocument : " index.html " }, }); return { bucketUrl : bucket . websiteEndpoint }; }, }); await stack . setConfig ( " aws:region " , { value : " us-east-1 " }); const result = await stack . up ({ onOutput : console . log }); console . log ( " URL: " , result . outputs . bucketUrl . value ); } Deploy infrastructure from an Express route, a Lambda function, or a CLI tool. No shell exec needed. 2. Stack References — Cross-Stac

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
7 views

Related Articles

How-To

The Difference between `let`, `var` and `const`

Medium Programming • 4h ago

How-To

Circulation Metrics Framework for Living Systems

Medium Programming • 6h ago

Red Rooms makes online poker as thrilling as its serial killer
How-To

Red Rooms makes online poker as thrilling as its serial killer

The Verge • 9h ago

Don’t Know What Project to Build? Here Are Developer Projects That Actually Make You Better
How-To

Don’t Know What Project to Build? Here Are Developer Projects That Actually Make You Better

Medium Programming • 10h ago

Why Most Developers
Stay Broke
How-To

Why Most Developers Stay Broke

Medium Programming • 12h ago

Discover More Articles