Metadata-Version: 2.1
Name: tgenv
Version: 1.3.2
Summary: A tool for managing terragrunt versions
Home-page: https://gitlab.com/claudiuskastner/tgenv
Author: Claudius Kastner
Author-email: claukast@gmail.com
License: GPL-3.0-only
Keywords: terragrunt terraform versioning
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Introduction

tgenv is a Python CLI tool for managing [terragrunt](https://github.com/gruntwork-io/terragrunt/) versions.

If you have any questions, any remarks or even bugs, feel free to open an issue.

There is currently no or will ever be any support for windows.

## Prerequisites

You need python3.8 installed.

## Installation

```bash
pip install tgenv
```

## Usage

- Show available versions
    ```bash
    tgenv list-remote
    ```
- Install a version
  ```bash
  tgenv install v0.24.4
  ```
- Show current version
  ```bash
  tgenv current
  ```
- Use an installed version
  ```bash
  tgenv use v0.24.4
  ```
- Show installed version
  ```bash
  tgenv list
  ```
- Remove installed versions
  ```bash
  tgenv remove v0.24.4
  ```
- Remove all versions
  ```bash
  tgenv purge
  ```

# Licensing
This program is published under the GPL-3.0-only. See the `LICENSE` file.


