From 6cc19197f9bd153557bb49337591260be49dfdbc Mon Sep 17 00:00:00 2001 From: Tarun Menon Date: Thu, 5 Sep 2024 13:01:18 +1000 Subject: [PATCH] fix tags --- ecs-task.cfndsl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecs-task.cfndsl.rb b/ecs-task.cfndsl.rb index 94cf39e..5e71d28 100644 --- a/ecs-task.cfndsl.rb +++ b/ecs-task.cfndsl.rb @@ -10,7 +10,7 @@ tags = external_parameters.fetch(:tags, []) tags.each do |key,value| - task_tags << { Key: key, Value: value } + task_tags << { Key: FnSub(key), Value: FnSub(value) } end log_retention = external_parameters.fetch(:log_retention, 7)