Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tfxor/terrahub

Terraform Automation and Orchestration Tool (Open Source)
https://github.com/tfxor/terrahub

automation cloud containers continuous-delivery continuous-deployment continuous-integration continuous-testing devops infrastructure orchestration serverless terraform

Last synced: 5 days ago
JSON representation

Terraform Automation and Orchestration Tool (Open Source)

Awesome Lists containing this project

README

        

# Welcome to TerraHub

## Quick Links

[TerraHub CLI](#terrahub-cli) | [TerraHub API](#terrahub-api) | [TerraHub Console](#terrahub-console) | [Install CLI](#install-cli) | [Examples and More](#examples)

Official TerraHub Documentation: https://docs.terrahub.io

## TerraHub CLI

terraform automation and orchestration tool

( built using [node.js](https://nodejs.org)
| published using [npm](https://www.npmjs.com/package/terrahub)
| managed using [github](https://github.com/tfxor/terrahub)
| documented using [gitbook](https://docs.terrahub.io) )

## TerraHub API

data and logs management, requires token to collect anything

( built using [node.js](https://nodejs.org)
| managed using [swagger](https://www.terrahub.io/api)
| deployed using [aws serverless](https://aws.amazon.com/serverless)
| documented using [swagger ui](https://www.terrahub.io/api) )

## TerraHub Console

enterprise friendly GUI to show realtime terraform executions, as well as
auditing and reporting capabilities for historical terraform runs

( built using [vue.js](https://vuejs.org)
| managed using [webpack](https://webpack.js.org)
| deployed using [aws serverless](https://aws.amazon.com/serverless)
| published using [terrahub](https://console.terrahub.io) )

## Install CLI

Getting started with TerraHub CLI is pretty straightforward:

1. Check if `npm` is installed:

```shell
npm --version
```

The output should look similar to the one below (no need to copy paste):

```text
v5.6.0
```

> NOTE: If `npm` is missing, check out [Downloading and Installing Node.js and npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)

2. Install `terrahub` globally using `npm`:

```shell
npm install --global terrahub
```

The output should look similar to the one below (no need to copy paste):

```text
~/.nvm/versions/node/v8.10.0/lib
└── [email protected]
```

3. Test if `terrahub` cli was installed properly:

```shell
terrahub --help
```

### TerraHub Token

[TerraHub CLI](https://www.npmjs.com/package/terrahub) doesn't magically collect your data and upload to [TerraHub API](https://www.terrahub.io/api), which is further visualized in [TerraHub Console](https://console.terrahub.io). In order to do that, please sign up for a free account at [console.terrahub.io](https://console.terrahub.io) and navigate to [Settings](https://console.terrahub.io/settings) page to copy TerraHub Token. Next, setup TerraHub Token as `TERRAHUB_TOKEN` environmental variable or update `token` value in global config file - `$HOME/.terrahub/.terrahub.json`.

## Examples

![TerraHub CLI and TerraHub Console in Action](https://raw.githubusercontent.com/tfxor/terrahub/main/docs/images/terrahub-in-action.gif "TerraHub CLI and TerraHub Console in Action")

More Examples:
* [Terraform Automation Demo using AWS Cloud Provider](https://github.com/tfxor/terraform-aws-automation-demo)
* [Terraform Automation Demo using Google Cloud Provider](https://github.com/tfxor/terraform-google-automation-demo)

Official TerraHub Documentation: https://docs.terrahub.io