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.
This commit is contained in:
Andrew Matheny 2015-06-23 00:56:18 -04:00
parent ce8baea6ae
commit 0ecd1fd054
1 changed files with 1 additions and 1 deletions

View File

@ -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"
}
}