diff --git a/website/source/docs/providers/consul/index.html.markdown b/website/source/docs/providers/consul/index.html.markdown index 372c51138..5b289e8d3 100644 --- a/website/source/docs/providers/consul/index.html.markdown +++ b/website/source/docs/providers/consul/index.html.markdown @@ -6,8 +6,9 @@ sidebar_current: "docs-consul-index" # Consul Provider -The Consul provider exposes resources used to interact with -the Consul catalog. The provider optionally must can be configured with +[Consul](http://www.consul.io) is a tool for service discovery, configuration +and orchestration The Consul provider exposes resources used to interact with a +Consul cluster. The provider optionally must can be configured with to change default behavior. Use the navigation to the left to read about the available resources. diff --git a/website/source/index.html.erb b/website/source/index.html.erb index eef6cc8fc..a229ef9b4 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -144,7 +144,7 @@

resource "digitalocean_droplet" "web" {

-

name = "baz"

+

name = "tf-web"

size = "512mb"

image = "centos-5-8-x32"

region = "sfo1"

@@ -153,7 +153,7 @@

resource "dnsimple_record" "hello" {

domain = "jack.ly"

name = "hello"

-

value = "${digitalocean_droplet.foobar.ipv4_address}"

+

value = "${digitalocean_droplet.web.ipv4_address}"

type = "A"

}