惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
博客园 - Franky
The Cloudflare Blog
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
B
Blog
Y
Y Combinator Blog
V
V2EX
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
博客园 - 司徒正美
IT之家
IT之家
G
Google Developers Blog
C
Check Point Blog
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Cut GCP Costs by 50% with Committed Use Discounts ...
ANKUSH CHOUD · 2026-05-02 · via DEV Community

ANKUSH CHOUDHARY JOHAL

How to Cut GCP Costs by 50% with Committed Use Discounts and Pulumi 3.130 in 2026

Cloud spend is a top concern for engineering teams in 2026, with GCP costs rising 22% year-over-year for the average enterprise. While Committed Use Discounts (CUDs) have long been a gold standard for reducing compute spend by up to 70%, manual CUD management often leads to overcommitment, wasted allocations, and missed savings. Enter Pulumi 3.130: the infrastructure-as-code (IaC) update released in Q1 2026 that automates every step of CUD lifecycle management, helping teams slash GCP costs by 50% or more with zero manual overhead.

What Are GCP Committed Use Discounts?

Committed Use Discounts are pricing agreements where you commit to using a specific amount of GCP compute resources (vCPUs, memory, GPUs) for a 1-year or 3-year term, in exchange for deeply discounted rates. Unlike sustained use discounts, which apply automatically for long-running workloads, CUDs require explicit commitment, and offer far larger savings: 57% off for 1-year commitments, 70% off for 3-year commitments for standard vCPU and memory allocations.

The catch? CUDs are rigid: if you overcommit to resources you don’t use, you pay for unused allocations. If you undercommit, you miss out on savings. Manual management requires constant usage tracking, workload forecasting, and commitment adjustments, which is error-prone and time-consuming for most teams.

Why Pulumi 3.130 Is a Game-Changer for CUD Management

Pulumi 3.130, released in early 2026, adds first-class support for GCP CUDs alongside several new features designed to eliminate manual cost optimization work:

  • Native gcp.compute.Commitment resource with full CRUD support, letting you define CUDs alongside your other GCP infrastructure in the same Pulumi stack.
  • Integrated GCP Recommender API support: Pulumi automatically pulls CUD recommendations based on your last 30 days of usage, and can even auto-apply recommended commitments via flag.
  • Drift detection for CUDs: Pulumi alerts you if a CUD is modified outside of your IaC stack, and can auto-remediate drift to prevent unexpected cost changes.
  • Cost allocation tagging: Automatically tag all CUDs with team, environment, and workload labels to track savings per project.

Step-by-Step: Cut GCP Costs 50% with Pulumi 3.130 and CUDs

1. Prerequisites

Before you start, ensure you have:

  • A GCP project with the Compute Engine API and Recommender API enabled.
  • Pulumi CLI 3.130.0 or later installed locally.
  • A Pulumi account (free tier works for small projects).
  • A GCP service account with roles/compute.admin and roles/recommender.computeAdmin permissions, with a key file downloaded.

2. Initialize Your Pulumi Project

Create a new Pulumi project using your preferred language (we’ll use TypeScript for this example):

mkdir gcp-cud-optimization && cd gcp-cud-optimization
pulumi new typescript --force
pulumi config set gcp:project your-gcp-project-id
pulumi config set gcp:credentials ./service-account-key.json

Enter fullscreen mode Exit fullscreen mode

3. Analyze Usage and Get CUD Recommendations

Use Pulumi’s built-in Recommender integration to fetch CUD recommendations for your project. Add the following to your index.ts file:

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

// Fetch CUD recommendations from GCP Recommender
const cudRecommendations = gcp.compute.getCommitmentRecommendations({
  project: pulumi.config.require("gcp:project"),
  zone: "us-central1-a", // Adjust to your primary zone
});

cudRecommendations.then(recs => {
  console.log("Recommended CUD allocations:", recs.recommendations);
});

Enter fullscreen mode Exit fullscreen mode

Run pulumi preview to see the recommendations, which will show the optimal vCPU and memory commitments for your workload.

4. Define and Deploy CUDs via Pulumi

Once you have your recommendations, define your CUDs in your Pulumi stack. For a 1-year commitment to 10 vCPUs and 40GB memory in us-central1-a:

const cudCommitment = new gcp.compute.Commitment("prod-compute-cud", {
  project: pulumi.config.require("gcp:project"),
  zone: "us-central1-a",
  plan: "ONE_YEAR",
  resources: [{
    type: "VCPU",
    amount: "10",
  }, {
    type: "MEMORY",
    amount: "40960", // 40GB in MB
  }],
  description: "1-year CUD for production web workloads",
  labels: {
    team: "backend",
    environment: "prod",
    workload: "web",
  },
});

export const cudId = cudCommitment.id;
export const estimatedSavings = "57% off on-demand pricing";

Enter fullscreen mode Exit fullscreen mode

Run pulumi up to deploy the CUD. Pulumi will create the commitment in GCP, and you’ll immediately start seeing discounted rates for matching compute usage.

5. Automate CUD Lifecycle Management

Pulumi 3.130 lets you automate CUD renewal and adjustment. Add a scheduled Pulumi deployment (via Pulumi Deployments) to run weekly: it will check for new recommendations, adjust CUDs if your usage changes by more than 10%, and alert you to unused commitments. You can also set up drift detection to ensure no one modifies CUDs outside of Pulumi, preventing unexpected cost overruns.

Real-World Results: 50% Cost Reduction

For a sample e-commerce team running 50 vCPUs of production workloads in us-central1, on-demand costs were $12,000/month. After deploying 1-year CUDs via Pulumi 3.130 for 45 vCPUs (90% of steady-state usage), their compute costs dropped to $6,000/month, a 50% reduction. The remaining 10% of burst workloads use on-demand pricing, avoiding overcommitment waste.

Conclusion

In 2026, GCP cost optimization doesn’t have to require manual spreadsheet tracking or dedicated FinOps headcount. By pairing Committed Use Discounts with Pulumi 3.130’s automated IaC workflows, you can lock in 50% or more in compute savings, with full visibility, zero waste, and minimal ongoing effort. Get started today with Pulumi’s free tier and GCP’s CUD calculator to estimate your potential savings.