From 0ecd1fd054373a950834a01fe983065c6e08ba5a Mon Sep 17 00:00:00 2001 From: Andrew Matheny Date: Tue, 23 Jun 2015 00:56:18 -0400 Subject: [PATCH] Fixes incorrect usage of terraform_remote_state in docs I was getting an error about a missing 'name' parameter when using the snippet from the docs that referenced a path value. Looking into the source, I found it was actually supposed to be name for the atlas provider. --- website/source/docs/state/remote.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/state/remote.html.md b/website/source/docs/state/remote.html.md index 483526c96e..3ab01fa79b 100644 --- a/website/source/docs/state/remote.html.md +++ b/website/source/docs/state/remote.html.md @@ -47,7 +47,7 @@ An example is shown below: resource "terraform_remote_state" "vpc" { backend = "atlas" config { - path = "hashicorp/vpc-prod" + name = "hashicorp/vpc-prod" } }