etcd
Stores the state in etcd 2.x at a given path.
This backend does not support state locking.
Example Configuration
Data Source Configuration
Configuration variables
The following configuration options are supported:
You are viewing documentation for version v1.1 and earlier. View latest version.
Stores the state in etcd 2.x at a given path.
This backend does not support state locking.
terraform {
backend "etcd" {
path = "path/to/terraform.tfstate"
endpoints = "http://one:4001 http://two:4001"
}
}
data "terraform_remote_state" "foo" {
backend = "etcd"
config = {
path = "path/to/terraform.tfstate"
endpoints = "http://one:4001 http://two:4001"
}
}
The following configuration options are supported: