fix(ec2): change default instance type from t2.micro to t3.micro - #14952
Conversation
The T2 instance family is legacy and not available in newer AWS regions like il-central-1 (Israel). Changing to t3.micro ensures deployments work in all regions. T3 instances offer better performance than T2 and are still covered under the AWS Free Tier. Fixes #14947 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Code ReviewSummaryThis PR appropriately addresses issue #14947 by updating the default AWS EC2 instance type from ✅ Positive Aspects
📝 Observations
✅ Quality GatesThe PR description indicates that 🎯 ConclusionThis is a clean, well-executed fix that:
Recommendation: Approve and merge ✅ The change is minimal, well-tested, and addresses a concrete user-reported issue without introducing risk. |
Summary
t2.microtot3.microContext
The T2 instance family is legacy and AWS is not adding it to newer regions. This causes deployment failures in regions like il-central-1 (Israel) with the error "The requested configuration is currently not supported".
T3 instances are:
Test plan
ansible-lintandyamllintpass (done locally)Fixes #14947
🤖 Generated with Claude Code