Merge pull request #3956 from Banno/fix-template-docs

docs: fix template_file syntax error
This commit is contained in:
James Nugent 2015-11-18 17:10:15 +02:00
commit 0a7e545b55
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ Renders a template from a file.
```
resource "template_file" "init" {
template = "${file(${path.module}/init.tpl)}"
template = "${file("${path.module}/init.tpl")}"
vars {
consul_address = "${aws_instance.consul.private_ip}"