docs: fix template_file syntax error

This commit is contained in:
Luke Amdor 2015-11-17 16:45:08 -06:00
parent b21438f700
commit f23a4994ae
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}"