From 36c6d37f692607fd511274113514c0492f14c1e4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 29 May 2015 14:30:36 -0700 Subject: [PATCH] website: Update docs for template_dir --- .../docs/templates/configuration-templates.html.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/website/source/docs/templates/configuration-templates.html.markdown b/website/source/docs/templates/configuration-templates.html.markdown index f5ae4a362..f940ebcc1 100644 --- a/website/source/docs/templates/configuration-templates.html.markdown +++ b/website/source/docs/templates/configuration-templates.html.markdown @@ -55,10 +55,11 @@ While some configuration settings have local variables specific to only that configuration, a set of functions are available globally for use in _any string_ in Packer templates. These are listed below for reference. -* `lower` - Lowercases the string. -* `pwd` - The working directory while executing Packer. * `isotime [FORMAT]` - UTC time, which can be [formatted](http://golang.org/pkg/time/#example_Time_Format). See more examples below. +* `lower` - Lowercases the string. +* `pwd` - The working directory while executing Packer. +* `template_dir` - The directory to the template for the build. * `timestamp` - The current Unix timestamp in UTC. * `uuid` - Returns a random UUID. * `upper` - Uppercases the string.