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:
Matthew Irish 2020-06-05 10:35:32 -05:00 committed by GitHub
parent 0b38ab3078
commit e36ed8968b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"
}