All Projects → vantage-sh → Ec2instances.info

vantage-sh / Ec2instances.info

Licence: mit
Amazon EC2 instance comparison site

Programming Languages

HTML
75241 projects
python
139335 projects - #7 most used programming language
Mako
254 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to Ec2instances.info

handbook.vantage.sh
The Cloud Cost Handbook is a free, open-source, community-supported set of guides meant to help explain often-times complex pricing of public cloud infrastructure and service providers in plain english.
Stars: ✭ 265 (-92.68%)
Mutual labels:  cost-estimation, cost-optimization, finops, cloud-cost, cloud-cost-intelligence
Aws Workflows On Github
Workflows for automation of AWS services setup from Github CI/CD
Stars: ✭ 95 (-97.37%)
Mutual labels:  aws, ec2, amazon
Aws Cli Cheatsheet
☁️ AWS CLI + JQ = Make life easier
Stars: ✭ 94 (-97.4%)
Mutual labels:  aws, ec2, rds
Check Reserved Instances
Compare instance reservations and running instances for AWS services
Stars: ✭ 102 (-97.18%)
Mutual labels:  aws, ec2, rds
Aws
A collection of bash shell scripts for automating various tasks with Amazon Web Services using the AWS CLI and jq.
Stars: ✭ 493 (-86.38%)
Mutual labels:  aws, ec2, amazon
Komiser
☁️ Cloud Environment Inspector 👮🔒 💰
Stars: ✭ 2,684 (-25.84%)
Mutual labels:  aws, ec2, rds
Awstaghelper
AWS bulk tagging tool
Stars: ✭ 98 (-97.29%)
Mutual labels:  aws, ec2, rds
Awesome Aws
A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome.
Stars: ✭ 9,895 (+173.42%)
Mutual labels:  aws, ec2, rds
Aws Cost Saver
A tiny CLI tool to help save costs in development environments when you're asleep and don't need them!
Stars: ✭ 178 (-95.08%)
Mutual labels:  aws, ec2, rds
Aws Sdk Perl
A community AWS SDK for Perl Programmers
Stars: ✭ 153 (-95.77%)
Mutual labels:  aws, ec2, amazon
Deploy Strapi On Aws
Deploying a Strapi API on AWS (EC2 & RDS & S3)
Stars: ✭ 121 (-96.66%)
Mutual labels:  aws, ec2, rds
Infracost
Cloud cost estimates for Terraform in pull requests💰📉 Love your cloud bill!
Stars: ✭ 4,505 (+24.48%)
Mutual labels:  aws, cost-estimation, cost-optimization
Laravel Aws Eb
Ready-to-deploy configuration to run Laravel on AWS Elastic Beanstalk.
Stars: ✭ 247 (-93.17%)
Mutual labels:  aws, ec2, amazon
instance-watcher
Get notified for Instances mistakenly left running across all AWS regions for specific AWS Account
Stars: ✭ 90 (-97.51%)
Mutual labels:  ec2, rds, finops
cloud-pricing-api
GraphQL API for cloud pricing. Contains over 3M public prices from AWS, Azure and GCP. Self-updates prices via an automated weekly job.
Stars: ✭ 281 (-92.24%)
Mutual labels:  finops, cloud-cost
vpc-peering-operator
A Kubernetes Operator to manage the lifecycle of AWS VPC Peering Connections
Stars: ✭ 23 (-99.36%)
Mutual labels:  ec2, amazon
unishox js
JS Library for Guaranteed compression of Unicode short strings
Stars: ✭ 27 (-99.25%)
Mutual labels:  cost-optimization, cloud-cost-intelligence
aws-map
Make a network graph of an AWS region
Stars: ✭ 79 (-97.82%)
Mutual labels:  ec2, rds
amazon-ec2-image-builder-samples
Samples for Amazon EC2 Image Builder
Stars: ✭ 103 (-97.15%)
Mutual labels:  ec2, amazon
aws-tag-sched-ops
Retired, please see https://github.com/sqlxpert/lights-off-aws
Stars: ✭ 24 (-99.34%)
Mutual labels:  ec2, rds

EC2Instances.info

Vantage Picture

I was sick of comparing EC2 instance metrics and pricing on Amazon's site so I made EC2Instances.info.

EC2Instances.info was originally created by Garret Heaton, is now hosted by Vantage and developed by the community of contributors.

Project status

Vantage employees are actively maintaining and hosting the site with the help of contributors here. Improvements in the form of pull requests or ideas via issues are welcome!

People have suggested many neat ideas and feature requests by opening issues on this repository. We also have a Slack Community for anyone to join with a devoted channel named #instances-vantage.sh.

Running locally

First, you'll need to provide credentials so that boto can access the AWS API. Options for setting this up are described in the boto docs. Ensure that your IAM user has at least the following permissions:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "ec2:DescribeInstanceTypes",
            "Resource": "*"
        },
        {
            "Effect": "Allow",
            "Action": "pricing:*",
            "Resource": "*"
        }
    ]
}

Running in Docker (recommended)

  1. Clone the repository, if not already done:

     git clone https://github.com/powdahound/ec2instances.info
     cd ec2instances.info
    
  2. Build a docker image:

     docker build -t ec2instances.info .
    
  3. Run a container from the built docker image:

     docker run -d --name some-container -p 8080:8080 ec2instances.info
    
  4. Open localhost:8080 in your browser to see it in action.

Detailed local build instructions

Note: These instructions are only kept here for reference, the Docker instructions mentioned above hide all these details and are recommended for local execution.

Make sure you have LibXML and Python development files. On Ubuntu, run sudo apt-get install python-dev libxml2-dev libxslt1-dev libssl-dev.

Then:

git clone https://github.com/powdahound/ec2instances.info
cd ec2instances.info/
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
invoke build
invoke serve
open http://localhost:8080
deactivate # to exit virtualenv

Requirements

API Access

The data backing EC2Instances.info has recently been made available via a free API. All you need to get started is a free API key. To get started with API access, check out the devoted API documentation.

Keep up-to-date

Feel free to watch/star this repo as we're looking to update the site regularly. Vantage also works on the following relevant projects:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].