From e36ed8968b50ec0ce8672f39a8fb5629bdcbd6e2 Mon Sep 17 00:00:00 2001 From: Matthew Irish <39469+meirish@users.noreply.github.com> Date: Fri, 5 Jun 2020 10:35:32 -0500 Subject: [PATCH] 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. --- website/docs/backends/types/consul.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/backends/types/consul.html.md b/website/docs/backends/types/consul.html.md index c73ab6f3d..740d97502 100644 --- a/website/docs/backends/types/consul.html.md +++ b/website/docs/backends/types/consul.html.md @@ -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" }