github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/website/docs/backends/operations.html.md (about) 1 --- 2 layout: "docs" 3 page_title: "Backends: Remote Operations (plan, apply, etc.)" 4 sidebar_current: "docs-backends-operations" 5 description: |- 6 Some backends support the ability to run operations (`refresh`, `plan`, `apply`, etc.) remotely. Terraform will continue to look and behave as if they're running locally while they in fact run on a remote machine. 7 --- 8 9 # Remote Operations (plan, apply, etc.) 10 11 Most backends run all operations on the local system — although Terraform stores 12 its state remotely with these backends, it still executes its logic locally and 13 makes API requests directly from the system where it was invoked. 14 15 This is simple to understand and work with, but when many people are 16 collaborating on the same Terraform configurations, it requires everyone's 17 execution environment to be similar. This includes sharing access to 18 infrastructure provider credentials, keeping Terraform versions in sync, 19 keeping Terraform variables in sync, and installing any extra software required 20 by Terraform providers. This becomes more burdensome as teams get larger. 21 22 Some backends can run operations (`plan`, `apply`, etc.) on a remote machine, 23 while appearing to execute locally. This enables a more consistent execution 24 environment and more powerful access controls, without disrupting workflows 25 for users who are already comfortable with running Terraform. 26 27 Currently, [the `remote` backend](./types/remote.html) is the only backend to 28 support remote operations, and [Terraform Cloud](/docs/cloud/index.html) 29 is the only remote execution environment that supports it. For more information, see: 30 31 - [The `remote` backend](./types/remote.html) 32 - [Terraform Cloud's CLI-driven run workflow](/docs/cloud/run/cli.html)