From ddc8f21edc5533fa090361b3ec13c881afc3cbdb Mon Sep 17 00:00:00 2001 From: John Dittmar Date: Wed, 7 Sep 2016 19:04:18 -0500 Subject: [PATCH] typo consul catalog entry example In the consul catalog entry example `name` was specified in the root of the resource rather than the key `node` which is the actual required key-name. --- .../source/docs/providers/consul/r/catalog_entry.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/consul/r/catalog_entry.html.markdown b/website/source/docs/providers/consul/r/catalog_entry.html.markdown index 354301a33..552a6a669 100644 --- a/website/source/docs/providers/consul/r/catalog_entry.html.markdown +++ b/website/source/docs/providers/consul/r/catalog_entry.html.markdown @@ -15,7 +15,7 @@ Provides access to Catalog data in Consul. This can be used to define a node or ``` resource "consul_catalog_entry" "app" { address = "192.168.10.10" - name = "foobar" + node = "foobar" service = { address = "127.0.0.1" id = "redis1"