๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

This Week in IT: Cloud Pricing Changes, Open Source Milestones, and Developer Tools

This Week in IT: Cloud Pricing Changes, Open Source Milestones, and Developer Tools

Welcome to the fourth weekly IT roundup of March 2026. This week highlights significant cloud pricing changes, major open-source milestones, new developer tools, and trends shaping modern infrastructure.

Cloud Pricing Updates

AWS Price Reductions

AWS announced price reductions on several popular services, continuing their trend of passing infrastructure efficiency gains to customers:

  • EC2 instances โ€” Select instance families reduced by 5-15%
  • S3 storage โ€” Standard storage tier reduced by 10%
  • Lambda โ€” Request pricing reduced, free tier expanded
  • RDS โ€” Multi-AZ deployment costs reduced for PostgreSQL and MySQL

Azure and GCP Responses

Both Microsoft Azure and Google Cloud Platform are expected to follow with competitive pricing adjustments. This is good news for organizations using multi-cloud strategies or evaluating cloud migrations.

Cost Optimization Tips

# AWS CLI: Find unused resources
# List unattached EBS volumes
aws ec2 describe-volumes \
    --filters "Name=status,Values=available" \
    --query "Volumes[].{ID:VolumeId,Size:Size,Created:CreateTime}" \
    --output table

# List unused Elastic IPs
aws ec2 describe-addresses \
    --query "Addresses[?AssociationId==null].{IP:PublicIp,AllocID:AllocationId}" \
    --output table

Open Source Milestones

  • PostgreSQL 17 โ€” Feature freeze announced, with incremental backup and improved JSON support as headline features
  • Node.js 22 LTS โ€” Now the active LTS release, with native TypeScript support improvements
  • Terraform 2.0 Preview โ€” HashiCorp previewing major improvements to the provider ecosystem
  • Podman 5.x โ€” Full Docker Compose compatibility achieved

New Developer Tools Worth Trying

  • Zed Editor โ€” Gaining traction as a fast, collaborative code editor
  • Atuin โ€” Shell history sync across machines with search
  • Mise โ€” Universal version manager (replacement for asdf)
  • Ruff โ€” Extremely fast Python linter and formatter

Infrastructure Trends

Platform Engineering Maturity

More organizations are establishing dedicated platform engineering teams. The focus is shifting from individual tool adoption to building cohesive internal developer platforms that abstract infrastructure complexity.

FinOps Adoption

Financial operations (FinOps) practices are becoming standard as cloud spending grows. Organizations are implementing real-time cost monitoring, budget alerts, and automated resource optimization.

Recommended Reading

Share this article:
Dargslan Editorial Team (Dargslan)
About the Author

Dargslan Editorial Team (Dargslan)

Collective of Software Developers, System Administrators, DevOps Engineers, and IT Authors

Dargslan is an independent technology publishing collective formed by experienced software developers, system administrators, and IT specialists.

The Dargslan editorial team works collaboratively to create practical, hands-on technology books focused on real-world use cases. Each publication is developed, reviewed, and...

Programming Languages Linux Administration Web Development Cybersecurity Networking

Stay Updated

Subscribe to our newsletter for the latest tutorials, tips, and exclusive offers.