terrahelp

command module
v0.7.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 9, 2019 License: Apache-2.0 Imports: 4 Imported by: 0

README

Travis CI ReportCard

Terrahelp

Terraforming, with a little help from your friends

Terrahelp is as a command line utility written in Go and is aimed at providing supplementary functionality which can sometimes prove useful when working with Terraform.

At present, it offers the following:

  • Encryption & decryption functionality. Run in either full or inline mode, and leveraging either a simple or Vault based encryption provider, this functionality provides the ability to encrypt and decrypt files such as terraform.tfstate files, as well as piped in output from commands such as terraform apply etc.

  • Masking functionality. If you don't want to encrypt sensitive data, but rather just mask it out with something like ***** then you can use the mask command instead. This can either be run over a file, or have the content piped into it.

For more details, and some examples of how to use it please see the example READMEs.

Additionally the blog post Securing Terraform State with Vault also provides more details and background as well.

    NAME:
       terrahelp - Provides additional functions helpful with terraform development

    USAGE:
       terrahelp [global options] command [command options] [arguments...]

    VERSION:
       X.X.X

    AUTHOR(S):
       https://github.com/opencredo OpenCredo - Nicki Watt

    COMMANDS:
        vault-autoconfig	Auto configures Vault with a basic setup to support encrypt and decrypt actions.
        encrypt		        Uses configured provider to encrypt specified content
        decrypt		        Uses configured provider to decrypt specified content
        mask                    Mask will overwrite sensitive data in output or files with a masked value (eg. ******).
        help, h                 Shows a list of commands or help for one command
        
    GLOBAL OPTIONS:
       --help, -h		show help
       --version, -v	print the version

Installation

Pre-built binaries

Available from the Terrahelp repository's releases page

The community has also made it available as a Terrahelp AUR package

OSX, Linux & *BSD

Download a binary, set the correct permissions, add to your PATH:

chmod +x terrahelp
export PATH=$PATH:/wherever/terrahelp

And run it:

terrahelp -help
OSX Additional Step

terrahelp may be prevented from running if you downloaded it using a web browser. To fix this, remove the quarantine attribute before running again:

xattr -d com.apple.quarantine terrahelp
Windows

Not yet supported

Build from source

Prerequisites

Install Go (Terrahelp is currently built against 1.13.x). The following official resources will guide you through your environment setup.

Clone the Terrahelp repository.

mkdir -p "$GOPATH/src/github.com/opencredo/"
git clone https://github.com/opencredo/terrahelp.git "$GOPATH/src/github.com/opencredo/terrahelp"
cd "$GOPATH/src/github.com/opencredo/terrahelp"
Dependencies

Terrahelp uses Go modules to manage it's dependencies. During Go's transition to switching on modules by default, Terrahelp is setup to buildusing the vendor directory. Supportive targets are prvoided to allow the vendor directory to be recreated if required.

Building and Executing

After a build has completed successfully a binary will be built and placed into a local bin directory. The following commands build and execute terrahelp.

make build
./bin/terrahelp -v 
Testing
make test
Installing and Executing

Installation places the binary in the $GOPATH/bin directory. Assuming that the directory has been added to your PATH, the following commands will install and execute Terrahelp.

make install
terrahelp -v
Want to cross compile it?*

The make file allows both OSX and Linux binaries to be created at the same time or individually.
The following commands show joint creation followed by OSX, (darwin) then Linux creation. All cross compiled binaries will be placed in a dist directory.

make dist
make darwin
make linux
Clean your project

A number of work directories will have been created through the previous build steps. The local bin and dist directories will contain binaries. The following command can be used to return the project back to a pre build state.

make clean
Dependency management

The following targets have been created to allow dependencies to be managed through Go modules. As mentioned before Terrahelp builds using the vendor directory.

  • make dependencies
    • Downloads the dependecies to the Go modules cache.
  • make tidy-dependencies
    • Adds missing and removes unused modules.
  • make vendor-dependencies
    • Copies the dependencies into the local vendor directory.
  • make clean-dependencies
    • Removes the local vendor directory.

NOTE: The Makefile defines a variable called BUILDARGS and this is currently set with -mod=vendor. This instructs various go commands to use the vendor directory. This can be overridden to build to project using standard go module flows.

BUILDARGS='' make build

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL