github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/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 ```shell 21 $ terraform remote config \ 22 -backend-config="name=$USERNAME/product" 23 ```