Description |
Best EC2
Best EC2, the smart solution designed to optimize your Amazon EC2 instance type selection process. The app simplifies the challenge of choosing the optimal EC2 instance type that matches your specific requirements, balancing performance, cost, and computing needs.
Prerequisites
python >=3.8.0
AWS Credentials
Install
pip install best-ec2
The IAM policy grants minimal permissions necessary for the application
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "General",
"Effect": "Allow",
"Action": [
"ec2:DescribeInstanceTypes"
],
"Resource": ""
},
{
"Sid": "OnDemand",
"Effect": "Allow",
"Action": [
"pricing:GetProducts"
],
"Resource": ""
},
{
"Sid": "Spot",
"Effect": "Allow",
"Action": [
"ec2:DescribeAvailabilityZones",
|