mirror of https://github.com/hashicorp/terraform
parent
cf95a60639
commit
d7bea2aab4
@ -1,17 +1,21 @@
|
||||
---
|
||||
title: "Collaborating on Terraform Remote State in Atlas"
|
||||
layout: "state"
|
||||
page_title: "State: Collaborating"
|
||||
sidebar_current: "docs-enterprise-state-collaborating"
|
||||
description: |-
|
||||
How to collaborate on states.
|
||||
---
|
||||
|
||||
# Collaborating on Terraform Remote State in Atlas
|
||||
# Collaborating on Terraform Remote State
|
||||
|
||||
Atlas is one of a few options to store [remote state](/help/terraform/state).
|
||||
Atlas is one of a few options to store [remote state](/docs/enterprise/state).
|
||||
|
||||
Remote state gives you the ability to version and collaborate on Terraform changes. It
|
||||
stores information about the changes Terraform makes based on configuration.
|
||||
|
||||
In order to collaborate safely on remote state, we recommend
|
||||
[creating an organization](/help/organizations/create) to manage teams of users.
|
||||
[creating an organization](https://atlas.hashicorp.com/help/organizations/create) to manage teams of users.
|
||||
|
||||
Then, following a [remote state push](/help/terraform/state) you can view state versions
|
||||
in the changes tab of the [environment](/help/glossary#environment) created under the same name
|
||||
as the remote state.
|
||||
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.
|
||||
@ -1,15 +1,19 @@
|
||||
---
|
||||
title: "Pushing Terraform Remote State to Atlas"
|
||||
layout: "state"
|
||||
page_title: "State: Pushing"
|
||||
sidebar_current: "docs-enterprise-state-pushing"
|
||||
description: |-
|
||||
Pushing remote states.
|
||||
---
|
||||
|
||||
# Pushing Terraform Remote State to Atlas
|
||||
# Pushing Terraform Remote State to Terraform Enterprise
|
||||
|
||||
Atlas is one of a few options to store [remote state](/help/terraform/state).
|
||||
Terraform Enterprise is one of a few options to store [remote state](/docs/enterprise/state).
|
||||
|
||||
Remote state gives you the ability to version and collaborate on Terraform changes. It
|
||||
stores information about the changes Terraform makes based on configuration.
|
||||
|
||||
To use Atlas to store remote state, you'll first need to have the
|
||||
To use Terraform Enterprise to store remote state, you'll first need to have the
|
||||
`ATLAS_TOKEN` environment variable set and run the following command.
|
||||
|
||||
$ terraform remote config -backend-config="name=%{DEFAULT_USERNAME}/product"
|
||||
|
||||
@ -0,0 +1,28 @@
|
||||
<% wrap_layout :inner do %>
|
||||
<% content_for :sidebar do %>
|
||||
<div class="docs-sidebar hidden-print affix-top" role="complementary">
|
||||
<ul class="nav docs-sidenav">
|
||||
<li>
|
||||
<a href="/docs/enterprise/index.html">« Terraform Enterprise</a>
|
||||
</li>
|
||||
|
||||
<li<%= sidebar_current(/^docs-enterprise-state-/) %>>
|
||||
<a href="/docs/enterprise/state/index.html">State</a>
|
||||
<ul class="nav nav-visible">
|
||||
<li<%= sidebar_current("docs-enterprise-state-pushing") %>>
|
||||
<a href="/docs/enterprise/state/pushing.html">Pushing State</a>
|
||||
</li>
|
||||
<li<%= sidebar_current("docs-enterprise-state-resolving") %>>
|
||||
<a href="/docs/enterprise/state/resolving-conflicts.html">Resolving Conflicts</a>
|
||||
</li>
|
||||
<li<%= sidebar_current("docs-enterprise-state-collaborating") %>>
|
||||
<a href="/docs/enterprise/state/collaborating.html">Collaborating</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<%= yield %>
|
||||
<% end %>
|
||||
Loading…
Reference in new issue