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
- AWS for Linux Administrators โ Navigate cloud pricing with confidence
- Git & GitHub for Absolute Beginners โ Contribute to open source
- Cloud Computing Basics โ Understand cloud fundamentals