Remove unneeded output syntax from GCS Remote State

This commit is contained in:
Christoph Blecker 2016-10-05 16:08:54 -07:00
parent 91160c215b
commit 4523639614
No known key found for this signature in database
GPG Key ID: B34A59A9D39F838B
1 changed files with 1 additions and 1 deletions

View File

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