Metadata-Version: 2.1
Name: aws-ssm-tree
Version: 0.0.1
Summary: Builds a tree of parameters from AWS System Manager Parameter Store.
Home-page: https://github.com/brunorubin/aws-ssm-tree
Author: Bruno Rubin
Author-email: bruno.rubin@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: boto3
Requires-Dist: treelib

# SSM Tree

## Installation

SSM Tree can be installed using [pip](https://pip.pypa.io/en/stable/):

```bash
pip install -i https://test.pypi.org/simple/ aws-ssm-tree
```

## Usage

```
Usage: ssm-tree [OPTIONS]

  SSM Tree is a tool that provides a tree visualization of the parameters
  hierarchy from AWS System Manager Parameter Store.

Options:
  --path TEXT      The hierarchy for the parameter. Hierarchies start with a
                   forward slash (/) and end with the parameter name. Here is
                   an example of a hierarchy: /Servers/Prod  [required]
  -r, --recursive  Retrieve all parameters within a hierarchy.
  --version        Show the version and exit.
  --help           Show this message and exit.
  ```

