Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Mitchell Hashimoto f67dfce2ae
scripts: fix extension in file copy for build
12 years ago
builtin providers/heroku: clean up heroku_app config vars 12 years ago
command command/apply: keep track of default variables separately [GH-153] 12 years ago
config config: replace interpolations in block keys [GH-234] 12 years ago
depgraph terraform: fix potential case where cycle is made 12 years ago
digraph Revert "Merge pull request #121 from JasonGiedymin/master" 12 years ago
flatmap flatmap: never auto-convert ints 12 years ago
helper helper/schema: Get on computed diff should be empty 12 years ago
plugin website: document how to write providers using the new helper/schema 12 years ago
rpc rpc: fix interface impl 12 years ago
scripts scripts: fix extension in file copy for build 12 years ago
terraform terraform: Interpolate if there are any interpolations [GH-159] 12 years ago
test-fixtures Remove all traces of libucl 12 years ago
website website: fix syntax of variables 12 years ago
.gitignore scripts: build script 12 years ago
.travis.yml Travis file should be unix line endings 12 years ago
CHANGELOG.md v0.2.0 12 years ago
CONTRIBUTING.md Update CONTRIBUTING.md 12 years ago
Godeps Adding Godeps 12 years ago
LICENSE Adding license 12 years ago
Makefile Fix phony in Makefile 12 years ago
README.md Remove cgo words from README, not needed anymore 12 years ago
TODO.md Remove some stuff from TODO.md 12 years ago
Vagrantfile Vagrantfile only needs one machine now 12 years ago
commands.go Always enable colors for now 12 years ago
config.go main: look up executables locally before PATH [GH-157] 12 years ago
config_test.go Update config test to handle provisioners 12 years ago
config_unix.go main: clean up the code surrounding config file loading 12 years ago
config_windows.go main: clean up the code surrounding config file loading 12 years ago
log.go Setup panicwrap 12 years ago
main.go main: clean up the code surrounding config file loading 12 years ago
panic.go Setup panicwrap 12 years ago
version.go v0.2.0 12 years ago

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 (version 1.2+ is required). Make sure Go is properly installed, including setting up a GOPATH.

Next, install the following software packages, which are 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. Install the necessary dependencies by running make updatedeps and then just type make. This will compile some more dependencies and then run the tests. If this exits with exit status 0, then everything is working!

$ make updatedeps
...
$ 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
...

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'
...

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.