Go to file
Mitchell Hashimoto f7bc33812e terraform: use a panic mechanism for handling hooks 2014-07-02 16:27:50 -07:00
builtin main: fix the help output to show up 2014-06-26 10:24:51 -07:00
command terraform: register gob type that might be in config 2014-07-02 11:28:23 -07:00
config config: style 2014-07-02 12:04:37 -07:00
depgraph Fix various order-dependent tests 2014-07-01 10:28:42 -07:00
digraph digraph: fix flaky test 2014-07-02 11:30:09 -07:00
flatmap flatmap: remove Map for now 2014-07-01 13:32:38 -07:00
helper helper/diff: work with complex data types 2014-07-01 16:06:06 -07:00
plugin some comments, package comments 2014-05-28 21:27:10 -07:00
rpc rpc: add Refresh method 2014-06-20 11:51:07 -07:00
scripts scripts: unix line endings 2014-06-26 10:07:31 -07:00
terraform terraform: use a panic mechanism for handling hooks 2014-07-02 16:27:50 -07:00
test-fixtures main: add main config 2014-05-25 17:39:44 -07:00
.gitignore Add the state to the gitignore 2014-06-19 14:09:03 -07:00
Makefile Add testrace 2014-07-01 10:04:23 -07:00
README.md update readme 2014-06-26 10:34:49 -07:00
TODO.md update TODO 2014-07-02 12:04:33 -07:00
commands.go command/graph 2014-07-01 10:02:13 -07:00
config.go main: instantiate the config and set it up 2014-06-09 21:57:37 -07:00
config_test.go main: instantiate the config and set it up 2014-06-09 21:57:37 -07:00
log.go Setup panicwrap 2014-05-30 16:07:26 -07:00
main.go terraform: diff hooks 2014-06-26 17:17:10 -07:00
panic.go Setup panicwrap 2014-05-30 16:07:26 -07:00
version.go Implement CLI, version command 2014-05-24 12:04:43 -07:00

README.md

Terraform

Terraform is a tool for building and changing infrastructure safetly and efficiently.

Developing Terraform

If you wish to work on Terraform itself or any of its built-in providers, you'll first need Go installed (version 1.2+ is required). Make sure Go is properly installed, including setting up a GOPATH. Make sure Go is compiled with cgo support. You can verify this by running go env and checking that CGOENABLED is set to "1".

Next, install Git, which is needed for some dependencies.

Then, install Gox, which is used as a compilation tool on top of Go:

$ go get -u github.com/mitchellh/gox

Next, clone this repository into $GOPATH/src/github.com/hashicorp/terraform and then just type make. This will compile some dependencies and then run the tests. If this exits with exit status 0, then everything is working!

$ make
...

To compile a development version of Terraform and the built-in plugins, run make dev. This will put Terraform binaries in the bin folder:

$ make dev
...
$ bin/terraform
...

If you're developing a specific package, you can run tests for just that package by specifying the TEST variable. For example below, only terraform package tests will be run.

$ make test TEST=./terraform
...