From 33a4ba2dc11e8120b0198d55006d3b462888afbc Mon Sep 17 00:00:00 2001 From: Joseph Daniel Date: Tue, 20 Jul 2021 20:24:29 +0530 Subject: [PATCH] Fix incorrect `isotime` output (#11157) --- website/content/docs/templates/legacy_json_templates/engine.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/templates/legacy_json_templates/engine.mdx b/website/content/docs/templates/legacy_json_templates/engine.mdx index a54feb2a4..70cbb1308 100644 --- a/website/content/docs/templates/legacy_json_templates/engine.mdx +++ b/website/content/docs/templates/legacy_json_templates/engine.mdx @@ -276,7 +276,7 @@ You can try and modify the following examples in a packer template or in | Input | Output | | ------------------------------------------ | ----------- | -| ``"packer-{{isotime `2006-01-02`}}"`` | "packer-2021-05-17 11:40:16" | +| ``"packer-{{isotime `2006-01-02`}}"`` | "packer-2021-05-17" | | ``"packer-{{isotime `Jan-_2-15:04:05.000`}}"`` | "packer-May-17-23:40:16.786" | | ``"packer-{{isotime `3:04PM`}}"`` | "packer-11:40PM" | | ``"{{ isotime }}"`` | "June 7, 7:22:43pm 2014" |