Metadata-Version: 2.1
Name: ec2u
Version: 0.1.4
Summary: EC2 Utils
Home-page: https://github.com/nthienan/ec2-utils
Author: An Nguyen
Author-email: nthienan.it@gmail.com
License: MIT
Project-URL: Bug Reports, https://github.com/nthienan/ec2-utils/issues
Project-URL: Source, https://github.com/nthienan/ec2-utils
Keywords: aws,ec2,ec2-utils,ec2u,devops
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: boto3 (==1.4.7)
Requires-Dist: click (==7.1.2)
Requires-Dist: ec2-metadata (==2.2.0)
Requires-Dist: six (==1.12)

# EC2 Utils CLI
- Before you can begin using **ec2u**, you must set up authentication credentials. 
If you have the AWS CLI installed, then you can use it to configure your credentials file:
```
aws configure 
```
Alternatively, you can create the credential file yourself. By default, its location is at `~/.aws/credentials`:
```
[default]
aws_access_key_id = YOUR_ACCESS_KEY
aws_secret_access_key = YOUR_SECRET_KEY
```
You may also want to set a default region. This can be done in the configuration file. By default, its location is at ~/.aws/config:
```
[default]
region=us-east-1
```

This sets up credentials for the default profile as well as a default region to use when creating connections. 
See [Credentials](https://boto3.readthedocs.io/en/latest/guide/configuration.html#guide-configuration) for in-depth configuration sources and options.

- Supported Python: 2.7
- Install dependencies: `pip install -r requirements.txt`
- Features:
  ```bash
    Usage: ec2u [OPTIONS] COMMAND [ARGS]...

    Options:
      --verbose
      --version  Show the version and exit.
      --help     Show this message and exit.

    Commands:
      gen-config  Generate AWS configuration file
      has-tag     Check whether or not instance has given tag
  ```


