Metadata-Version: 2.1
Name: o7cli
Version: 0.1.136
Summary: Useful CLI and scripts for O7 Conseils DevOps practice
Home-page: UNKNOWN
Author: Philippe Gosselin
Author-email: phil@o7conseils.com
License: LICENSE
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3 (>=1.18)
Requires-Dist: pandas (>=1.3)
Requires-Dist: requests (>=1.18)
Requires-Dist: sty (>=1.0.0-rc.2)

# O7 CLI
A Useful tool for O7 Conseils AWS DevOps activities.
This is developped on a as we need it tool, it shared to allow others to use it.

## Installation
Run the following to install:
```bash
pip install o7cli
```
## Usage

```bash
# Help
o7

# See all AWS pipeline in us-east-1
o7 -r us-east-1 pl

# See all AWS Cloudwatch logs for profile ab in us-west2
o7 -p ab -r us-west-2 log
```

## Options & Module
```
o7 [options] <module>
Useful CLI and scripts for O7 Conseils DevOps practice
version: <VERSION>
Options:
    -p <profile> : Set AWS Profile
    -r <region>  : Set AWS Region
    -d           : Set DEBUG Traces
    -v           : Version Number
Available Modules:
    report: Multiple Reports
    cost: Analyse AWS Sccount Cost
    cfn: Cloudformation
    ec2: EC2
    lf: Lambda Funcition
    rds: Relational DB
    asg: Auto Scaling Group
    cm: Cloud Map
    pl: Code Pipeline
    cb: Code Build
    log: Cloudwatch Logs
```

