Go to file
Paul Hinze 6af79168db core: demote early exit log from ERROR -> DEBUG 2016-02-24 09:58:33 -06:00
Godeps Build with Go 1.6 2016-02-23 12:58:38 -06:00
builtin fix go vet warnings 2016-02-24 09:48:32 -06:00
command Merge pull request #5012 from jrnt30/TF-5011-Backend-flag-normalization 2016-02-08 17:59:20 -05:00
communicator communicator/winrm: fix data race in io copy 2016-01-16 13:33:24 -05:00
config config: Add new interpolation function - md5 2016-02-24 13:01:05 +00:00
contrib command: Change module-depth default to -1 2016-01-20 13:58:02 -06:00
dag dag: add HasVertex, HasEdge 2016-01-14 13:52:01 -08:00
deps v0.6.10 2016-01-27 22:18:55 +00:00
digraph Fix TestWriteDot random order error 2014-07-29 10:26:50 -07:00
dot core: graph command gets -verbose and -draw-cycles 2015-04-27 09:23:47 -05:00
examples examples: Add examples for CloudWatch Events 2016-02-13 13:21:33 +00:00
flatmap flatmap: never auto-convert ints 2014-07-24 11:41:01 -07:00
helper Use built-in schema.HashString. 2016-02-07 16:29:34 -08:00
plugin Demote some log lines to DEBUG. 2015-10-11 10:45:33 -07:00
rpc Reverting a few lines from PR #2406 2015-06-25 16:28:04 +02:00
scripts Put the equals in the correct place 2016-02-17 17:44:38 +01:00
state Fix `go vet -unreachable` warnings. 2016-02-17 11:59:50 -08:00
terraform core: demote early exit log from ERROR -> DEBUG 2016-02-24 09:58:33 -06:00
test-fixtures Remove all traces of libucl 2014-08-19 09:57:04 -07:00
vendor Merge branch 'atlassian-datadog_provider' 2016-02-22 16:43:04 -05:00
website Merge pull request #5267 from TimeIncOSS/f-config-md5-func 2016-02-24 14:00:08 +00:00
.gitignore Added verify command 2016-02-08 12:48:14 +01:00
.travis.yml Update Travis to use Go 1.6 2016-02-17 14:29:53 -08:00
BUILDING.md Update BUILDING.md 2015-11-28 22:49:23 -05:00
CHANGELOG.md Update CHANGELOG.md 2016-02-24 14:01:25 +00:00
CONTRIBUTING.md Enhanced Contributing Guide 2016-01-19 17:11:17 -06:00
LICENSE Adding license 2014-07-28 13:54:06 -04:00
Makefile Run `vet` target on `default` target 2016-02-22 13:35:50 -05:00
README.md Remove `make updatedeps` from README steps 2016-02-23 16:20:43 -05:00
Vagrantfile Build with Go 1.6 2016-02-23 12:58:38 -06:00
checkpoint.go fixing version numbers RCs should be labeled x.x.x-rcx 2015-02-07 16:56:56 +01:00
commands.go Added verify command 2016-02-08 12:48:14 +01:00
config.go use upstream osext, which fixes some bugs 2015-10-17 17:33:45 -07:00
config_test.go Update config test to handle provisioners 2014-07-10 11:38:57 -07:00
config_unix.go core: use !windows instead of a list of unixes 2015-12-30 17:37:24 -05:00
config_windows.go config looks in a plugin directory if it exists 2014-09-27 12:36:13 -07:00
main.go core: use same logging setup for acctests 2015-12-08 17:50:36 -06:00
make.bat make.bat: Makefile-like test functionality for Windows 2015-02-04 16:25:20 +01:00
panic.go panic: Instruct the user to include terraform's version for bug reports. 2015-05-14 18:14:56 -04:00
version.go Expose Terraform version internally & externally 2015-06-21 12:24:42 +01:00

README.md

Terraform

Terraform

Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions.

The key features of Terraform are:

  • Infrastructure as Code: Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and treated as you would any other code. Additionally, infrastructure can be shared and re-used.

  • Execution Plans: Terraform has a "planning" step where it generates an execution plan. The execution plan shows what Terraform will do when you call apply. This lets you avoid any surprises when Terraform manipulates infrastructure.

  • Resource Graph: Terraform builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, Terraform builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure.

  • Change Automation: Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what Terraform will change and in what order, avoiding many possible human errors.

For more information, see the introduction section of the Terraform website.

Getting Started & Documentation

All documentation is available on the Terraform website.

Developing Terraform

If you wish to work on Terraform itself or any of its built-in providers, you'll first need Go installed on your machine (version 1.6+ is required). Alternatively, you can use the Vagrantfile in the root of this repo to stand up a virtual machine with the appropriate dev tooling already set up for you.

For local dev first make sure Go is properly installed, including setting up a GOPATH. You will also need to add $GOPATH/bin to your $PATH. Next, install the following software packages, which are needed for some dependencies:

Next, clone this repository into $GOPATH/src/github.com/hashicorp/terraform and run make. This will compile dependencies and 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 and $GOPATH/bin folders:

$ 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, onlyterraform package tests will be run.

$ make test TEST=./terraform
...

If you're working on a specific provider and only wish to rebuild that provider, you can use the plugin-dev target. For example, to build only the Azure provider:

$ make plugin-dev PLUGIN=provider-azure

If you're working on the core of Terraform, and only wish to rebuild that without rebuilding providers, you can use the core-dev target. It is important to note that some types of changes may require both core and providers to be rebuilt - for example work on the RPC interface. To build just the core of Terraform:

$ make core-dev

Acceptance Tests

Terraform also has a comprehensive acceptance test suite covering most of the major features of the built-in providers.

If you're working on a feature of a provider and want to verify it is functioning (and hasn't broken anything else), we recommend running the acceptance tests. Note that we do not require that you run or write acceptance tests to have a PR accepted. The acceptance tests are just here for your convenience.

Warning: The acceptance tests create/destroy/modify real resources, which may incur real costs. In the presence of a bug, it is technically possible that broken providers could corrupt existing infrastructure as well. Therefore, please run the acceptance providers at your own risk. At the very least, we recommend running them in their own private account for whatever provider you're testing.

To run the acceptance tests, invoke make testacc:

$ make testacc TEST=./builtin/providers/aws TESTARGS='-run=Vpc'
go generate ./...
TF_ACC=1 go test ./builtin/providers/aws -v -run=Vpc -timeout 90m
=== RUN TestAccVpc_basic
2015/02/10 14:11:17 [INFO] Test: Using us-west-2 as test region
[...]
[...]
...

The TEST variable is required, and you should specify the folder where the provider is. The TESTARGS variable is recommended to filter down to a specific resource to test, since testing all of them at once can take a very long time.

Acceptance tests typically require other environment variables to be set for things such as access keys. The provider itself should error early and tell you what to set, so it is not documented here.

Cross Compilation and Building for Distribution

If you wish to cross-compile Terraform for another architecture, you can set the XC_OS and XC_ARCH environment variables to values representing the target operating system and architecture before calling make. The output is placed in the pkg subdirectory tree both expanded in a directory representing the OS/architecture combination and as a ZIP archive.

For example, to compile 64-bit Linux binaries on Mac OS X Linux, you can run:

$ XC_OS=linux XC_ARCH=amd64 make bin 
...
$ file pkg/linux_amd64/terraform
terraform: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped

XC_OS and XC_ARCH can be space separated lists representing different combinations of operating system and architecture. For example, to compile for both Linux and Mac OS X, targeting both 32- and 64-bit architectures, you can run:

$ XC_OS="linux darwin" XC_ARCH="386 amd64" make bin
...
$ tree ./pkg/ -P "terraform|*.zip"
./pkg/
├── darwin_386
│   └── terraform
├── darwin_386.zip
├── darwin_amd64
│   └── terraform
├── darwin_amd64.zip
├── linux_386
│   └── terraform
├── linux_386.zip
├── linux_amd64
│   └── terraform
└── linux_amd64.zip

4 directories, 8 files

Note: Cross-compilation uses gox, which requires toolchains to be built with versions of Go prior to 1.5. In order to successfully cross-compile with older versions of Go, you will need to run gox -build-toolchain before running the commands detailed above.