From: Bjørn Erik Pedersen Date: Wed, 11 Mar 2020 21:21:16 +0000 (+0100) Subject: resources: Add data context to the key in ExecuteAsTemplate X-Git-Tag: v0.67.1~4 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=18cb21ff2e4a60e7094908e4d6113a9d5a086316;p=brevno-suite%2Fhugo resources: Add data context to the key in ExecuteAsTemplate Fixes #7046 --- diff --git a/resources/resource_transformers/templates/execute_as_template.go b/resources/resource_transformers/templates/execute_as_template.go index 115b3d04..d6015c17 100644 --- a/resources/resource_transformers/templates/execute_as_template.go +++ b/resources/resource_transformers/templates/execute_as_template.go @@ -48,7 +48,7 @@ type executeAsTemplateTransform struct { } func (t *executeAsTemplateTransform) Key() internal.ResourceTransformationKey { - return internal.NewResourceTransformationKey("execute-as-template", t.targetPath) + return internal.NewResourceTransformationKey("execute-as-template", t.targetPath, t.data) } func (t *executeAsTemplateTransform) Transform(ctx *resources.ResourceTransformationCtx) error {