From fa1e0bab7f3d9a23073f9f40b8ba668d6793d65c Mon Sep 17 00:00:00 2001 From: Kevin Prince Date: Sat, 27 May 2017 23:41:38 -0700 Subject: [PATCH] DOCS: The resource name should be consistent. (#14883) * The resource name should be consistent. The HCL declares the terraform_remote_state with a resource name of foo. But the example invocation uses network which is incorrect. * Foo > Network so this is a proper example. --- website/source/docs/backends/types/s3.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/backends/types/s3.html.md b/website/source/docs/backends/types/s3.html.md index db777c22a..e6548873c 100644 --- a/website/source/docs/backends/types/s3.html.md +++ b/website/source/docs/backends/types/s3.html.md @@ -44,7 +44,7 @@ To make use of the S3 remote state we can use the source](/docs/providers/terraform/d/remote_state.html). ```hcl -data "terraform_remote_state" "foo" { +data "terraform_remote_state" "network" { backend = "s3" config { bucket = "terraform-state-prod"