From 3a5cbf4e72bf3d1b8b1ac8f8095f87ed567fd237 Mon Sep 17 00:00:00 2001 From: Brandon Squizzato Date: Fri, 21 May 2021 15:18:13 -0400 Subject: [PATCH] Correctly sub image tags --- bonfire/processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonfire/processor.py b/bonfire/processor.py index 95dadbba..6614de6a 100644 --- a/bonfire/processor.py +++ b/bonfire/processor.py @@ -250,7 +250,7 @@ def _get_component_items(self, component_name): new_items = process_template(template, params)["items"] # override the tags for all occurences of an image if requested - self._sub_image_tags(new_items) + new_items = self._sub_image_tags(new_items) if self.remove_resources: _remove_resource_config(new_items)