Personal projects demonstrating resilient solution design, infrastructure automation, and Well-Architected best practices across compute, networking, security, data, and platform engineering.
No governance framework meant every team provisioned AWS resources differently, creating security gaps, inconsistent tagging, and no central visibility across accounts.
Deployed a four-OU AWS Organizations structure with 8 SCPs, centralized GuardDuty, org-wide CloudTrail, and Terraform-based account vending across 10+ accounts.
A single-server WordPress deployment had no redundancy: one hardware failure caused complete site outages lasting hours with no automated recovery path.
Replaced with a 3-AZ Auto Scaling group behind an ALB, Multi-AZ RDS with automated failover, CloudFront CDN, and WAF, delivering RTO under 15 minutes.
Deploying 11 microservices required consistent, repeatable delivery with runtime security scanning and automatic node scaling without over-provisioning capacity.
Deployed Online Boutique on EKS 1.28 with ArgoCD GitOps for declarative delivery, Karpenter for node autoscaling, and Trivy integrated into CI for CVE scanning.
A synchronous order API blocked new orders during processing spikes, and any single failure could permanently drop orders with no retry mechanism.
Built a fully serverless order pipeline with SQS FIFO + Lambda + DynamoDB using two-layer idempotency, running at $2.32/month with zero idle infrastructure cost.
A monolithic on-premises database couldn't serve mixed workloads: product catalog lookups, session data, and transactional orders each had conflicting access patterns and scale requirements.
Designed polyglot persistence with DynamoDB for catalog, Aurora for orders, and ElastiCache Redis for sessions, reducing infrastructure cost from $1,800/month on-prem to $297/month on AWS.
Building a full CRUD REST API with authentication and authorization required scalable compute and identity management without the overhead of managing servers.
Built a fully serverless REST API with Lambda + API Gateway + DynamoDB + Cognito JWT auth, supporting complete CRUD operations with zero server management overhead.
A retail client in APAC ran WordPress on a single shared hosting server: no redundancy, no backups, and 180ms page load times for Southeast Asian customers costing conversion rates.
Delivered a full SA pre-sales engagement including proposal, TCO analysis, and ADR recommending Elastic Beanstalk + RDS Multi-AZ + CloudFront matched to the client's operational maturity.
eb deploy workflow delivered the required HA at under $100/month without requiring DevOps hiring.