Metadata-Version: 2.1
Name: terraform-installer
Version: 1.0.1
Summary: install or upgrade the open source version of terraform.
Home-page: https://gitlab.com/shindagger/terraform-installer
Author: Andy Klier
Author-email: andyklier@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Requires-Dist: string-color
Requires-Dist: beautifulsoup4
Requires-Dist: requests
Requires-Dist: tqdm
Requires-Dist: pywin32 ; platform_system == "Windows"

# Terraform Installer [terraform-installer, ti]  

command line installer for the open source version of [terraform](https://www.terraform.io/)  

`ti` is still in the early stages of development. it has been tested in the following platforms:
```
Ubuntu Linux ARM
Ubuntu Linux amd64
Darwin amd64
Windows10 amd64
```   

## Installation  

```
pip install terraform-installer  
```  

### Usage  

```
# show help and exit  
ti -h  

# install or upgrade, attempt to figure out the platform  
# this is still experimental on most platforms  
ti  

# install or upgrade specific platform  
ti darwin_amd64  

# install a specific release of given platform  
ti darwin_amd64 -r 0.12.1  

# example for CI/CD
# -y skips the yes/no prompt, and -d specifies an install destination
ti linux_amd64 -y -d /usr/local/bin/
```   


