Adding a deprecation warning on 'terraform remote config' command
This commit is contained in:
parent
94ed759663
commit
8cee4eb12b
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
layout: "enterprise"
|
||||||
|
page_title: "Pushing - State - Terraform Enterprise"
|
||||||
|
sidebar_current: "docs-enterprise-state-pushing"
|
||||||
|
description: |-
|
||||||
|
Pushing remote states.
|
||||||
|
---
|
||||||
|
|
||||||
|
# Pushing Terraform Remote State to Terraform Enterprise
|
||||||
|
|
||||||
|
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 Terraform Enterprise to store remote state, you'll first need to have the
|
||||||
|
`ATLAS_TOKEN` environment variable set and run the following command.
|
||||||
|
|
||||||
|
**NOTE:** `terraform remote config` command has been deprecated in 0.9.X. Remote configuration is now managed as a [backend configuration](/docs/backends/config.html).
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ terraform remote config \
|
||||||
|
-backend-config="name=$USERNAME/product"
|
||||||
|
```
|
|
@ -79,6 +79,9 @@
|
||||||
<li<%= sidebar_current("docs-enterprise-state") %>>
|
<li<%= sidebar_current("docs-enterprise-state") %>>
|
||||||
<a href="/docs/enterprise/state/index.html">State</a>
|
<a href="/docs/enterprise/state/index.html">State</a>
|
||||||
<ul class="nav">
|
<ul class="nav">
|
||||||
|
<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") %>>
|
<li<%= sidebar_current("docs-enterprise-state-resolving") %>>
|
||||||
<a href="/docs/enterprise/state/resolving-conflicts.html">Resolving Conflicts</a>
|
<a href="/docs/enterprise/state/resolving-conflicts.html">Resolving Conflicts</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue