[docs] update terraform configuration page to include reference to the backends section (#14894)

This commit is contained in:
Ben Hartshorne 2017-05-28 22:58:08 -07:00 committed by Radek Simko
parent ab7cbb1cf9
commit 34b45c5ad8
1 changed files with 7 additions and 2 deletions

View File

@ -29,12 +29,17 @@ terraform {
The `terraform` block configures the behavior of Terraform itself. The `terraform` block configures the behavior of Terraform itself.
The currently only allowed configuration within this block is The currently only allowed configurations within this block are
`required_version`. This setting specifies a set of version constraints `required_version` and `backend`.
`required_version` specifies a set of version constraints
that must be met to perform operations on this configuration. If the that must be met to perform operations on this configuration. If the
running Terraform version doesn't meet these constraints, an error running Terraform version doesn't meet these constraints, an error
is shown. See the section below dedicated to this option. is shown. See the section below dedicated to this option.
See [backends](/docs/backends/index.html) for more detail on the `backend`
configuration.
**No value within the `terraform` block can use interpolations.** The **No value within the `terraform` block can use interpolations.** The
`terraform` block is loaded very early in the execution of Terraform `terraform` block is loaded very early in the execution of Terraform
and interpolations are not yet available. and interpolations are not yet available.