Metadata-Version: 2.1
Name: ec2-demo
Version: 0.1.3
Summary: EC2 demo
Home-page: https://github.com/jpedro/ec2-demo
Download-URL: https://github.com/jpedro/ec2-demo/tarball/master
Author: jpedro
Author-email: jpedro.barbosa@gmail.com
License: MIT
Keywords: ec2 create delete demo
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown

# EC2 Demo

A small cli util to create, list and delete EC2 instances.


## Design

    ec2-demo create <env> <file.yaml>
    ec2-demo list <env>
    ec2-demo delete <env> <id>


## Implementation

We will use:

- `click` for the cli interface, not `argparse` and related
- `boto3` for the API calls (SDK)
