Making a wise choice with ec2-instance-selector
AWS has more than 200 instance types under EC2. It’s very tricky to select appropriate ec2-instance types and surely AWS docs can be daunting. You can check the official doc here: https://aws.amazon.com/ec2/instance-types/ ec2-instance-selector is an open-source project by AWS. It is a CLI tool to helps you select compatible instance types. Check out the repo here, https://github.com/aws/amazon-ec2-instance-selector Features You can filter AWS Instance types using criteria like vcpu, memory, network performance, etc. You can use this project as a Go library to embed this functionality into your Golang projects, I will surely embed this in awsctl. Installing ec2-instance-selector On Mac brew tap aws/tap brew install ec2-instance-selector On Linux & Windows, you can download the binary from the release page. verify installation ec2-instance-selector --version v2.4.1 Usage Lookup all the instance type details interactively ec2-instance-selector -o interactive ...