Go to file
Petros Kolyvas e760927408
Update .github/CONTRIBUTING.md
Co-Authored-By: Pam Selle <pamela.selle@gmail.com>
2020-04-06 16:43:46 -04:00
.github Update .github/CONTRIBUTING.md 2020-04-06 16:43:46 -04:00
addrs Create non-specific ModuleCallOutput 2020-03-26 13:29:38 -04:00
backend Merge pull request #24346 from hashicorp/jbardin/module-expansion-another-part 2020-03-11 14:32:23 -04:00
builtin Mildwonkey/ps import (#24412) 2020-03-20 08:15:29 -04:00
command Merge pull request #24471 from hashicorp/alisdair/fmt-source 2020-03-27 09:19:12 -04:00
communicator
config
configs enable count and for_each in configuration 2020-03-25 17:03:06 -04:00
contrib
dag
digraph
docs Add support for provider metadata to modules. (#22583) 2020-03-05 16:53:24 -08:00
e2e
examples
experiments
flatmap
helper Mildwonkey/ps import (#24412) 2020-03-20 08:15:29 -04:00
httpclient
instances Expander.ExpandResource cannot expand all modules 2020-03-25 11:58:23 -04:00
internal internal/providercache: LinkFromOtherCache removes target, not source 2020-03-25 13:50:00 -07:00
lang Create non-specific ModuleCallOutput 2020-03-26 13:29:38 -04:00
moduledeps rename provider-specific functions (#24417) 2020-03-20 13:59:59 -04:00
plans finish provider ModuleInstance replacement 2020-03-11 14:19:52 -04:00
plugin Add support for provider metadata to modules. (#22583) 2020-03-05 16:53:24 -08:00
providers finish provider ModuleInstance replacement 2020-03-11 14:19:52 -04:00
provisioners
registry registry: Fix panic when server is unreachable 2020-03-19 10:20:10 -04:00
repl finish provider ModuleInstance replacement 2020-03-11 14:19:52 -04:00
scripts Coverage updates, roll back makefile change, use travis specific script 2020-03-03 14:10:17 -05:00
state state: update local unlock err (#24320) 2020-03-17 14:01:51 -04:00
states use addrs.ConfigResource for dependency tracking 2020-03-25 17:03:06 -04:00
terraform Create non-specific ModuleCallOutput 2020-03-26 13:29:38 -04:00
tfdiags tfdiags: Diagnostics.ToHCL 2020-03-12 11:11:29 -07:00
tools
vendor build: Use Go 1.14 2020-03-04 13:26:50 -08:00
version
website website: fix simple typo (#24415) 2020-03-23 08:55:08 -04:00
.gitignore
.go-version build: Use Go 1.14 2020-03-04 13:26:50 -08:00
.hashibot.hcl
.tfdev
.travis.yml (build) temporarily disable codecov while debugging travis 2020-03-25 15:37:38 -04:00
BUILDING.md
CHANGELOG.md Update CHANGELOG.md 2020-03-27 09:20:44 -04:00
CODEOWNERS tabs are hard 2020-04-01 15:32:47 -04:00
Dockerfile
LICENSE
Makefile Coverage updates, roll back makefile change, use travis specific script 2020-03-03 14:10:17 -05:00
README.md
checkpoint.go
codecov.yml Set Codecov threshold to 0.05% to avoid flicker 2020-03-09 14:56:30 -04:00
commands.go command: remove 0.12upgrade (#24403) 2020-03-19 08:01:16 -04:00
go.mod build: Use Go 1.14 2020-03-04 13:26:50 -08:00
go.sum vendor: Fix checksum for github.com/coreos/etcd (#24343) 2020-03-17 13:56:58 -04:00
help.go
main.go
main_test.go
panic.go
plugins.go
signal_unix.go
signal_windows.go
synchronized_writers.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

If you're new to Terraform and want to get started creating infrastructure, please checkout our Getting Started guide, available on the Terraform website.

All documentation is available on the Terraform website:

Developing Terraform

This repository contains only Terraform core, which includes the command line interface and the main graph engine. Providers are implemented as plugins that each have their own repository in the terraform-providers organization on GitHub. Instructions for developing each provider are in the associated README file. For more information, see the provider development overview.

To learn more about compiling Terraform and contributing suggested changes, please refer to the contributing guide.

License

Mozilla Public License v2.0