Go to file
Kirill Shirinkin 7e676a672f provider/openstack: extend documentation of Neutron::FloatingIP 2015-11-08 20:43:34 +01:00
builtin Merge pull request #3801 from jtopjian/jtopjian-openstack-secgroup-computed 2015-11-07 12:31:15 -07:00
command command: fix failing TestPlan_noState test 2015-10-29 18:07:44 -05:00
communicator removed extra parentheses 2015-10-08 15:48:04 +03:00
config Merge pull request #2973 from bobtfish/length_empty_split_zero 2015-10-29 14:58:36 -05:00
contrib
dag dag: use hashcodes to as map key to edge sets 2015-10-27 11:58:34 -07:00
depgraph
deps v0.6.6 2015-10-23 15:31:41 +00:00
digraph
dot
examples Update vpn.tf 2015-10-26 00:49:44 -04:00
flatmap
helper Nicer error when list/map assigned to string argument. 2015-10-22 21:16:02 -07:00
plugin Demote some log lines to DEBUG. 2015-10-11 10:45:33 -07:00
rpc
scripts Use hc-releases 2015-10-26 17:21:04 -04:00
state aws: fix build after upstream breaking change 2015-10-29 18:52:10 -05:00
terraform Started the work for the AWS CodeCommit Repository resource 2015-10-30 21:39:04 +00:00
test-fixtures
website provider/openstack: extend documentation of Neutron::FloatingIP 2015-11-08 20:43:34 +01:00
.gitignore config/module: use go-getter 2015-10-15 13:36:58 -07:00
.travis.yml travis: build with go 1.5 now 2015-10-28 12:21:49 -04:00
BUILDING.md
CHANGELOG.md Update CHANGELOG.md 2015-11-07 12:32:22 -07:00
CONTRIBUTING.md
LICENSE
Makefile Makefile target to build a single plugin for local testing. 2015-10-11 14:24:23 -07:00
README.md Remove unnecessary tabs from the README file 2015-08-27 10:10:16 +02:00
Vagrantfile vagrantfile: update base image name to Bento, from Chef 2015-10-16 14:00:23 -05:00
checkpoint.go
commands.go
config.go use upstream osext, which fixes some bugs 2015-10-17 17:33:45 -07:00
config_test.go
config_unix.go Demote some log lines to DEBUG. 2015-10-11 10:45:33 -07:00
config_windows.go
log.go log: support for user defined log levels 2015-10-11 10:29:00 -07:00
main.go
make.bat
panic.go
version.go

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