2015-03-05 01:35:42 +01:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "Command: remote config"
|
|
|
|
sidebar_current: "docs-commands-remote-config"
|
|
|
|
description: |-
|
|
|
|
The `terraform remote config` command is used to configure Terraform to make
|
|
|
|
use of remote state storage, change remote storage configuration, or
|
|
|
|
to disable it.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Command: remote config
|
|
|
|
|
|
|
|
The `terraform remote config` command is used to configure use of remote
|
|
|
|
state storage. By default, Terraform persists its state only to a local
|
|
|
|
disk. When remote state storage is enabled, Terraform will automatically
|
|
|
|
fetch the latest state from the remote server when necessary and if any
|
|
|
|
updates are made, the newest state is persisted back to the remote server.
|
|
|
|
In this mode, users do not need to durably store the state using version
|
2015-11-11 20:09:26 +01:00
|
|
|
control or shared storage.
|
2015-03-05 01:35:42 +01:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `terraform remote config [options]`
|
|
|
|
|
|
|
|
The `remote config` command can be used to enable remote storage, change
|
|
|
|
configuration or disable the use of remote storage. Terraform supports multiple types
|
|
|
|
of storage backends, specified by using the `-backend` flag. By default,
|
|
|
|
Atlas is assumed to be the storage backend. Each backend expects different,
|
|
|
|
configuration arguments documented below.
|
|
|
|
|
|
|
|
When remote storage is enabled, an existing local state file can be migrated.
|
|
|
|
By default, `remote config` will look for the "terraform.tfstate" file, but that
|
|
|
|
can be specified by the `-state` flag. If no state file exists, a blank
|
|
|
|
state will be configured.
|
|
|
|
|
2015-04-07 23:50:10 +02:00
|
|
|
When enabling remote storage, use the `-backend-config` flag to set
|
|
|
|
the required configuration variables as documented below. See the example
|
|
|
|
below this section for more details.
|
|
|
|
|
2015-03-05 01:35:42 +01:00
|
|
|
When remote storage is disabled, the existing remote state is migrated
|
|
|
|
to a local file. This defaults to the `-state` path during restore.
|
|
|
|
|
2016-01-17 23:27:13 +01:00
|
|
|
Supported storage backends and supported features of those
|
|
|
|
are documented in the [Remote State](/docs/state/remote/index.html) section.
|
2015-03-05 01:35:42 +01:00
|
|
|
|
|
|
|
The command-line flags are all optional. The list of available flags are:
|
|
|
|
|
2016-01-17 23:27:13 +01:00
|
|
|
* `-backend=Atlas` - The remote backend to use. Must be one of the
|
2015-04-07 23:50:10 +02:00
|
|
|
supported backends.
|
2015-03-05 01:35:42 +01:00
|
|
|
|
2015-04-07 23:50:10 +02:00
|
|
|
* `-backend-config="k=v"` - Specify a configuration variable for a backend.
|
2016-01-17 23:27:13 +01:00
|
|
|
This is how you set the required variables for the backend.
|
2015-03-05 01:35:42 +01:00
|
|
|
|
|
|
|
* `-backup=path` - Path to backup the existing state file before
|
|
|
|
modifying. Defaults to the "-state" path with ".backup" extension.
|
|
|
|
Set to "-" to disable backup.
|
|
|
|
|
|
|
|
* `-disable` - Disables remote state management and migrates the state
|
|
|
|
to the `-state` path.
|
|
|
|
|
2015-03-27 01:57:45 +01:00
|
|
|
* `-pull=true` - Controls if the remote state is pulled before disabling
|
|
|
|
or after enabling. This defaults to true to ensure the latest state
|
|
|
|
is available under both conditions.
|
2015-03-05 01:35:42 +01:00
|
|
|
|
|
|
|
* `-state=path` - Path to read state. Defaults to "terraform.tfstate"
|
|
|
|
unless remote state is enabled.
|
|
|
|
|
2015-04-07 23:50:10 +02:00
|
|
|
## Example: Consul
|
|
|
|
|
|
|
|
The example below will push your remote state to Consul. Note that for
|
|
|
|
this example, it would go to the public Consul demo. In practice, you
|
|
|
|
should use your own private Consul server:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ terraform remote config \
|
|
|
|
-backend=consul \
|
|
|
|
-backend-config="address=demo.consul.io:80" \
|
|
|
|
-backend-config="path=tf"
|
|
|
|
```
|