TerraHub CLI | TerraHub API | TerraHub Console | Install CLI | Examples and More
Official TerraHub Documentation: https://docs.terrahub.io
terraform automation and orchestration tool
data and logs management, requires token to collect anything
enterprise friendly GUI to show realtime terraform executions, as well as auditing and reporting capabilities for historical terraform runs
Getting started with TerraHub CLI is pretty straightforward:
- Check if
npm
is installed:
npm -v
The output should look similar to the one below (no need to copy paste):
v3.10.0
NOTE: If
npm
is missing, check out Downloading and installing Node.js and npm
- Install
terrahub
globally usingnpm
:
npm install --global terrahub
The output should look similar to the one below (no need to copy paste):
~/.nvm/versions/node/v6.10.0/lib
└── terrahub@0.0.1
- Test if
terrahub
cli was installed properly:
terrahub --help
TerraHub CLI doesn't magically collect your data and upload to TerraHub API, which is further visualized in TerraHub Console. In order to do that, please sign up for a free account at console.terrahub.io and navigate to Settings page to copy TerraHub Token. Next, setup TerraHub Token as THUB_TOKEN
environmental variable or update token
value in global config file - $HOME/.terrahub/.terrahub.json
.
More Examples:
Official TerraHub Documentation: https://docs.terrahub.io