Roadmaps
AWS Roadmap 2026
AWS has hundreds of services -- this roadmap focuses on the ~15 that actually show up in most real jobs and interviews.
Stage 1: Core Compute and Storage (2-3 weeks)
- EC2 -- instance types, security groups, key pairs
- S3 -- buckets, storage classes, bucket policies
- Example: launch an EC2 instance, host a static site on S3
Stage 2: Identity and Networking (2-3 weeks)
- IAM -- users, roles, policies, least-privilege design
- VPC -- subnets, route tables, internet/NAT gateways
- Security Groups vs. Network ACLs
- Example: build a VPC with a public and private subnet, and an EC2 instance in each
Stage 3: Databases and Serverless (2-3 weeks)
- RDS -- managed relational databases
- DynamoDB fundamentals
- Lambda -- functions, triggers, and event sources
- Example: build a simple serverless API -- API Gateway + Lambda + DynamoDB
Stage 4: Scaling and Reliability (2 weeks)
- Elastic Load Balancing
- Auto Scaling Groups
- CloudWatch for monitoring and alarms
- Example: put the EC2 setup from Stage 1 behind a load balancer with an Auto Scaling Group
Stage 5: Infrastructure as Code (2-3 weeks)
- CloudFormation or Terraform
- Example: recreate everything built in Stages 1-4 as code, deployable with a single command
Stage 6: Certification Path
- AWS Certified Cloud Practitioner (foundational, optional if you already have hands-on experience)
- AWS Certified Solutions Architect -- Associate (the most broadly valuable one for most roles)
- A specialty certification later (DevOps Engineer, Security) based on your specific career direction
Frequently Asked Questions
No -- interviews focus on the core services (compute, storage, networking, IAM, databases) and your ability to reason about tradeoffs and architecture, not encyclopedic knowledge of AWS's full catalog.
For most of this roadmap, yes -- EC2 t2/t3.micro, S3, Lambda, and DynamoDB all have meaningful free tiers. Set up billing alerts regardless, since it's easy to accidentally leave something running.