Go to file
Sander van Harmelen b1c6a3f63f Few small fixes to make the last tests also pass
The reason why the shebang is removed from these tests, is because the
shebang is only needed for SSH/Linux connections. So in the new setup
the shebang line is added in the SSH communicator instead of in the
resource provisioner itself…
2015-05-01 18:48:54 +02:00
builtin Few small fixes to make the last tests also pass 2015-05-01 18:48:54 +02:00
command Merge pull request #1655 from hashicorp/f-build-graph-during-plan 2015-04-30 16:08:33 -05:00
communicator Adding some abstractions for the communicators 2015-05-01 18:48:54 +02:00
config config: add module raw configs to InterpolatedConfigs [GH-1448] 2015-04-29 17:12:28 -07:00
contrib/zsh-completion added taint completion 2015-04-04 13:06:27 +03:00
dag core: graph command gets -verbose and -draw-cycles 2015-04-27 09:23:47 -05:00
depgraph depgraph: Adding method to get incoming edges 2014-09-30 11:20:15 -07:00
deps record deps for v0.4.1 2015-04-09 16:14:26 -05: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 Update README.md 2015-04-28 21:08:43 +10:00
flatmap flatmap: never auto-convert ints 2014-07-24 11:41:01 -07:00
helper Adding some abstractions for the communicators 2015-05-01 18:48:54 +02:00
plugin Adding some abstractions for the communicators 2015-05-01 18:48:54 +02:00
rpc rpc: implement provisioner update 2014-10-04 09:54:03 -07:00
scripts Merge pull request #1538 from fatih/build-script-fix 2015-04-15 11:50:55 -05:00
state S3 remote stage storage backend, against the new remote state API. 2015-04-30 09:21:49 -07:00
terraform Merge pull request #1763 from hashicorp/b-fix-1699 2015-04-30 16:34:19 -05:00
test-fixtures Remove all traces of libucl 2014-08-19 09:57:04 -07:00
website providers/aws: Implements DHCP Options Set support. 2015-04-30 17:52:04 -04:00
.gitignore Multiple gcp improvements and new resources 2015-01-30 10:32:35 -06:00
.travis.yml travis: run `go vet` on every build 2015-03-05 14:59:51 -06:00
CHANGELOG.md Update CHANGELOG.md 2015-04-30 17:43:41 -05:00
CONTRIBUTING.md Initial commit. This adds the initial bits of a Docker provider. 2015-03-10 15:38:52 +00:00
LICENSE Adding license 2014-07-28 13:54:06 -04:00
Makefile Add quickdev option; skips getting dependencies to make repeated builds a bit faster and less network-heavy 2015-03-06 17:07:16 +00:00
README.md update README on running acceptance tests. Mostly formatting/typo fix 2015-02-10 14:41:39 -08:00
Vagrantfile Update GOPATH usage in Vagrantfile 2015-04-17 09:39:31 -04:00
checkpoint.go fixing version numbers RCs should be labeled x.x.x-rcx 2015-02-07 16:56:56 +01:00
commands.go command/push: start it 2015-03-24 13:30:21 -07:00
config.go Initial commit. This adds the initial bits of a Docker provider. 2015-03-10 15:38:52 +00:00
config_test.go Update config test to handle provisioners 2014-07-10 11:38:57 -07:00
config_unix.go config looks in a plugin directory if it exists 2014-09-27 12:36:13 -07:00
config_windows.go config looks in a plugin directory if it exists 2014-09-27 12:36:13 -07:00
log.go fmt 2014-10-10 14:50:35 -07:00
main.go Log the version info for easier debugging 2014-10-20 22:32:00 -07:00
make.bat make.bat: Makefile-like test functionality for Windows 2015-02-04 16:25:20 +01:00
panic.go Setup panicwrap 2014-05-30 16:07:26 -07:00
version.go up version for dev 2015-04-14 12:54:45 -07: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.4+ 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. Next, install the following software packages, which are needed for some dependencies:

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

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 45m
=== 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.