From f23a4994ae4b2ca9ce10021c76a924e8ac2da311 Mon Sep 17 00:00:00 2001 From: Luke Amdor Date: Tue, 17 Nov 2015 16:45:08 -0600 Subject: [PATCH] docs: fix template_file syntax error --- website/source/docs/providers/template/r/file.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/template/r/file.html.md b/website/source/docs/providers/template/r/file.html.md index 7c9e2c59e..7d102457b 100644 --- a/website/source/docs/providers/template/r/file.html.md +++ b/website/source/docs/providers/template/r/file.html.md @@ -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}"