Updating guide to reference runs and applies instead of remote state push

This commit is contained in:
Maciej Skierkowski 2017-04-26 15:51:25 -07:00
parent 9e791ad357
commit 94ed759663
2 changed files with 11 additions and 12 deletions

View File

@ -8,7 +8,7 @@ description: |-
# Collaborating on Terraform Remote State
Terraform Enterprise is one of a few options to store [remote state](/docs/enterprise/state).
Terraform Enterprise is one of a few options to store [remote state](/docs/state/remote.html).
Remote state gives you the ability to version and collaborate on Terraform
changes. It stores information about the changes Terraform makes based on
@ -18,6 +18,5 @@ In order to collaborate safely on remote state, we recommend
[creating an organization](/docs/enterprise/organizations/create.html) to
manage teams of users.
Then, following a [remote state push](/docs/enterprise/state) you can view state
versions in the changes tab of the environment created under the same name as
the remote state.
Then, following a [Terraform Enterprise Run](/docs/enterprise/runs) or [`apply`](/docs/commands/apply.html)
you can view state versions in the `States` list of the environment.

View File

@ -8,17 +8,17 @@ description: |-
# State
Terraform stores the state of your managed infrastructure from the last time
Terraform was run. By default this state is stored in a local file named
`terraform.tfstate`, but it can also be stored remotely, which works better in a
team environment.
Terraform Enterprise is a remote state provider, allowing you to store, version
and collaborate on states.
Terraform Enterprise stores the state of your managed infrastructure from the
last time Terraform was run. The state is stored remotely, which works better in a
team environment, allowing you to store, version and collaborate on state.
Remote state gives you more than just easier version control and safer storage.
It also allows you to delegate the outputs to other teams. This allows your
infrastructure to be more easily broken down into components that multiple teams
can access.
Read [more about remote state](https://www.terraform.io/docs/state/remote.html).
Remote state is automatically updated when you run [`apply`](/docs/commands/apply.html)
locally. It is also updated when an `apply` is executed in a [Terraform Enterprise
Run](/docs/enterprise/runs/index.html).
Read [more about remote state](/docs/state/remote.html).