website: copy

This commit is contained in:
Armon Dadgar 2014-07-28 10:49:51 -04:00
parent b30c17a499
commit 4c739423a4
2 changed files with 5 additions and 4 deletions

View File

@ -6,8 +6,9 @@ sidebar_current: "docs-consul-index"
# Consul Provider # Consul Provider
The Consul provider exposes resources used to interact with [Consul](http://www.consul.io) is a tool for service discovery, configuration
the Consul catalog. The provider optionally must can be configured with 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. to change default behavior.
Use the navigation to the left to read about the available resources. Use the navigation to the left to read about the available resources.

View File

@ -144,7 +144,7 @@
<div class=""> <div class="">
<div class="display"> <div class="display">
<p>resource "digitalocean_droplet" "web" {</p> <p>resource "digitalocean_droplet" "web" {</p>
<p> name = "baz"</p> <p> name = "tf-web"</p>
<p> size = "512mb"</p> <p> size = "512mb"</p>
<p> image = "centos-5-8-x32"</p> <p> image = "centos-5-8-x32"</p>
<p> region = "sfo1"</p> <p> region = "sfo1"</p>
@ -153,7 +153,7 @@
<p>resource "dnsimple_record" "hello" {</p> <p>resource "dnsimple_record" "hello" {</p>
<p> domain = "jack.ly"</p> <p> domain = "jack.ly"</p>
<p> name = "hello"</p> <p> name = "hello"</p>
<p> value = "<span class="txt-r">${digitalocean_droplet.foobar.ipv4_address}</span>"</p> <p> value = "<span class="txt-r">${digitalocean_droplet.web.ipv4_address}</span>"</p>
<p> type = "A"</p> <p> type = "A"</p>
<p>}</p> <p>}</p>
</div> </div>