mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
use example.com address in consul backend config
Currently the example config for the Consul backend uses a live Consul demo cluster at `demo.consul.io`. This results in TF state with sensitive information and all being stored on a public site when users just copy and paste the config. This PR changes it so that the config address isn't the public demo cluster.
This commit is contained in:
parent
0b38ab3078
commit
e36ed8968b
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ This backend supports [state locking](/docs/state/locking.html).
|
|||
```hcl
|
||||
terraform {
|
||||
backend "consul" {
|
||||
address = "demo.consul.io"
|
||||
address = "consul.example.com"
|
||||
scheme = "https"
|
||||
path = "full/path"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue