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.
pull/25147/head
Matthew Irish 6 years ago committed by GitHub
parent 0b38ab3078
commit e36ed8968b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save