From 452363961461d4ae13856a4ef2308f3c26aa1a06 Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Wed, 5 Oct 2016 16:08:54 -0700 Subject: [PATCH 1/2] Remove unneeded output syntax from GCS Remote State --- website/source/docs/state/remote/gcs.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/state/remote/gcs.html.md b/website/source/docs/state/remote/gcs.html.md index 0c6fc65d5..868db31da 100644 --- a/website/source/docs/state/remote/gcs.html.md +++ b/website/source/docs/state/remote/gcs.html.md @@ -42,7 +42,7 @@ resource "template_file" "bar" { template = "${greeting}" vars { - greeting = "${data.terraform_remote_state.foo.output.greeting}" + greeting = "${data.terraform_remote_state.foo.greeting}" } } ``` From 393427933934419c848417362ed803446ff490b7 Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Wed, 5 Oct 2016 16:09:10 -0700 Subject: [PATCH 2/2] Documentation formatting fix --- website/source/docs/state/remote/manta.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/state/remote/manta.html.md b/website/source/docs/state/remote/manta.html.md index 7875a4472..c794464cd 100644 --- a/website/source/docs/state/remote/manta.html.md +++ b/website/source/docs/state/remote/manta.html.md @@ -16,7 +16,7 @@ Stores the state as an artifact in [Manta](https://www.joyent.com/manta). terraform remote config \ -backend=manta \ -backend-config="path=random/path" \ - -backend-config="objecName=terraform.tfstate" + -backend-config="objecName=terraform.tfstate" ``` ## Example Referencing @@ -26,7 +26,7 @@ data "terraform_remote_state" "foo" { backend = "manta" config { path = "random/path" - objectName = "terraform.tfstate" + objectName = "terraform.tfstate" } } ```