github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/enterprise/state/pushing.html.md (about) 1 --- 2 layout: "enterprise" 3 page_title: "Pushing - State - Terraform Enterprise" 4 sidebar_current: "docs-enterprise-state-pushing" 5 description: |- 6 Pushing remote states. 7 --- 8 9 # Pushing Terraform Remote State to Terraform Enterprise 10 11 Terraform Enterprise is one of a few options to store [remote state](/docs/enterprise/state). 12 13 Remote state gives you the ability to version and collaborate on Terraform 14 changes. It stores information about the changes Terraform makes based on 15 configuration. 16 17 To use Terraform Enterprise to store remote state, you'll first need to have the 18 `ATLAS_TOKEN` environment variable set and run the following command. 19 20 **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). 21 22 ```shell 23 $ terraform remote config \ 24 -backend-config="name=$USERNAME/product" 25 ```