Go to file
James Bardin a7c5a72c3d
Merge pull request #26358 from hashicorp/jbardin/no-vendor
Remove vendoring
2020-09-24 10:57:02 -04:00
.circleci Merge pull request #26358 from hashicorp/jbardin/no-vendor 2020-09-24 10:57:02 -04:00
.github remove vendoring from contribution guide 2020-09-23 17:06:59 -04:00
addrs addrs: Resource.InModule, similar to Resource.Absolute 2020-08-24 11:41:28 -07:00
backend insert PlanRefresh into the context 2020-09-24 09:34:49 -04:00
builtin
command remove -mod=vendor from command tests 2020-09-23 17:56:19 -04:00
communicator communicator/winrm: include configured timeout in winrm server 2020-06-25 08:41:09 -04:00
configs configs: Deprecate nested redundant interpolations 2020-09-22 13:40:08 -04:00
contrib
dag
digraph
docs docs: Provider protocol wire format for values 2020-09-01 10:40:36 -07:00
e2e remove vendor from some tooling 2020-09-23 17:06:59 -04:00
examples
experiments Create experiment for sensitive attribute 2020-09-10 11:04:17 -04:00
flatmap
helper fix error string matching in test 2020-09-23 16:43:40 -04:00
httpclient
instances
internal internal/depsfile: Introduce the concept of "non-lockable" providers 2020-09-08 09:50:58 -07:00
lang lang/funcs: Add "alltrue" function (#25656) 2020-09-22 09:06:42 -04:00
moduledeps
plans add state to plans.Plan 2020-09-17 09:54:59 -04:00
plugin
providers Remove terraform.ResourceProvider, use providercache.Installer instead 2020-04-06 09:24:23 -07:00
provisioners
registry
repl repl: Improved value renderer for console outputs 2020-09-14 09:47:12 -04:00
scripts use alpine:latest as the base image for terraform docker containers 2020-07-01 16:03:06 -04:00
states remove mod=vendor in statemgr test 2020-09-24 08:44:49 -04:00
terraform add Addr field for logging 2020-09-24 09:49:22 -04:00
tfdiags
tools terraform-bundle: initial changelog (#25917) 2020-08-19 15:20:07 -04:00
version Cleanup after v0.14.0-alpha20200923 release 2020-09-23 18:19:52 +00:00
website Merge pull request #26337 from hashicorp/pselle/docs-vendor-provisioners 2020-09-22 14:54:21 -04:00
.gitignore
.go-version update to go1.15.2 2020-09-23 15:18:22 -04:00
.hashibot.hcl hashibot: Temporarily disable issue migration 2020-09-22 14:41:18 -07:00
.tfdev
CHANGELOG.md Release v0.14.0-alpha20200923 2020-09-23 17:44:31 +00:00
CODEOWNERS Add remilapeyre to CODEOWNERS 2020-08-19 14:25:19 +02:00
Dockerfile
LICENSE
Makefile remove vendor from some tooling 2020-09-23 17:06:59 -04:00
README.md
checkpoint.go
codecov.yml build: put codecov in informational mode (#26271) 2020-09-17 08:13:50 -04:00
commands.go main: new global option -chdir 2020-09-04 15:31:08 -07:00
go.mod Merge pull request #26239 from jceresini/master 2020-09-16 11:50:01 -04:00
go.sum update go.sum for go1.15 2020-09-23 16:43:43 -04:00
help.go main: new global option -chdir 2020-09-04 15:31:08 -07:00
main.go main: new global option -chdir 2020-09-04 15:31:08 -07:00
main_test.go
panic.go
plugins.go
provider_source.go internal/getproviders: HTTPMirrorSource implementation 2020-08-26 13:18:08 -07:00
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

Documentation is available on the Terraform website:

If you're new to Terraform and want to get started creating infrastructure, please check out our Getting Started guides on HashiCorp's learning platform. There are also additional guides to continue your learning.

Show off your Terraform knowledge by passing a certification exam. Visit the certification page for information about exams and find study materials on HashiCorp's learning platform.

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