github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/website/source/docs/enterprise/state/index.html.md (about) 1 --- 2 layout: "enterprise" 3 page_title: "State - Terraform Enterprise" 4 sidebar_current: "docs-enterprise-state" 5 description: |- 6 Terraform stores the state of your managed infrastructure from the last time Terraform was run. This section is about states. 7 --- 8 9 # State 10 11 Terraform stores the state of your managed infrastructure from the last time 12 Terraform was run. By default this state is stored in a local file named 13 `terraform.tfstate`, but it can also be stored remotely, which works better in a 14 team environment. 15 16 Terraform Enterprise is a remote state provider, allowing you to store, version 17 and collaborate on states. 18 19 Remote state gives you more than just easier version control and safer storage. 20 It also allows you to delegate the outputs to other teams. This allows your 21 infrastructure to be more easily broken down into components that multiple teams 22 can access. 23 24 Read [more about remote state](https://www.terraform.io/docs/state/remote.html).