nhite / nhite

The nhite engine for Terraform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

Nhite stands for Nhite is hip-terraform

TODO: A lot of documentation, code and bug-fixing....

Getting started

go get -v -u github.com/nhite/nhite

Setting up a certificate

nhite is a grpc service and it requires a TLS/SSL connexion. Therefore is requires ssl certificates.

You can generate tests certificates with openssl or you can use the tool certstrap which does not rely on openssl.

Quick start

certstrap init --common-name "test" 
certstrap request-cert -ip 127.0.0.1
certstrap sign 127.0.0.1 --CA test

Then points the env variables to the correct files:

export NHITE_CERT_FILE="out/127.0.0.1.crt"
export NHITE_KEY_FILE="out/127.0.0.1.key"

FAQ

I have an error panic: http: multiple registrations for /debug/requests in runtime

This is related to this issue. Please remove the directory $GOPATH/src/github.com/hashicorp/terraform/vendor/golang.org/x/net/trace and build the tool again

About

The nhite engine for Terraform

License:Apache License 2.0


Languages

Language:Go 89.6%Language:Makefile 7.4%Language:Shell 3.0%