From 15014c07b494fd17d9e406d0f598a151699fc547 Mon Sep 17 00:00:00 2001 From: George Thorp Date: Tue, 25 Mar 2025 10:59:12 +0000 Subject: [PATCH 1/3] Added temporal_image as a variable at the top level aws_ecs module to allow for overridint eh default value and updates version to the latest 1.1.6. --- modules/aws_ecs/main.tf | 1 + modules/aws_ecs/temporal/variables.tf | 4 ++-- modules/aws_ecs/variables.tf | 6 ++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/modules/aws_ecs/main.tf b/modules/aws_ecs/main.tf index 9750935..d386fc1 100644 --- a/modules/aws_ecs/main.tf +++ b/modules/aws_ecs/main.tf @@ -694,6 +694,7 @@ module "temporal" { temporal_aurora_backup_retention_period = var.temporal_aurora_backup_retention_period temporal_aurora_preferred_backup_window = var.temporal_aurora_preferred_backup_window temporal_aurora_instances = var.temporal_aurora_instances + temporal_image = var.temporal_image aws_region = var.aws_region aws_ecs_cluster_id = aws_ecs_cluster.this.id launch_type = var.launch_type diff --git a/modules/aws_ecs/temporal/variables.tf b/modules/aws_ecs/temporal/variables.tf index 4f0390e..4e8a3a8 100644 --- a/modules/aws_ecs/temporal/variables.tf +++ b/modules/aws_ecs/temporal/variables.tf @@ -148,8 +148,8 @@ variable "private_dns_namespace_id" { variable "temporal_image" { type = string - default = "tryretool/one-offs:retool-temporal-1.1.2" - description = "Docker image to use for Temporal cluster." + description = "Docker image for Temporal" + default = "tryretool/one-offs:retool-temporal-1.1.6" } variable "secret_length" { diff --git a/modules/aws_ecs/variables.tf b/modules/aws_ecs/variables.tf index b6e127a..45df9a7 100644 --- a/modules/aws_ecs/variables.tf +++ b/modules/aws_ecs/variables.tf @@ -361,6 +361,12 @@ variable "temporal_aurora_instances" { } } +variable "temporal_image" { + type = string + description = "Docker image for Temporal" + default = "tryretool/one-offs:retool-temporal-1.1.6" +} + variable "workflows_enabled" { type = bool default = false From a60c8717536917089a46842a351a419fe39911b3 Mon Sep 17 00:00:00 2001 From: gthorp91 <30087238+gthorp91@users.noreply.github.com> Date: Tue, 2 Sep 2025 11:46:30 +0100 Subject: [PATCH 2/3] Update modules/aws_ecs/temporal/variables.tf Co-authored-by: roberto-retool <110634506+roberto-retool@users.noreply.github.com> --- modules/aws_ecs/temporal/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aws_ecs/temporal/variables.tf b/modules/aws_ecs/temporal/variables.tf index 4e8a3a8..8b716d1 100644 --- a/modules/aws_ecs/temporal/variables.tf +++ b/modules/aws_ecs/temporal/variables.tf @@ -149,7 +149,7 @@ variable "private_dns_namespace_id" { variable "temporal_image" { type = string description = "Docker image for Temporal" - default = "tryretool/one-offs:retool-temporal-1.1.6" + default = "tryretool/one-offs:retool-temporal-1.1.5" } variable "secret_length" { From e3c89e96eb4aad511116a94a0e8de471e4cce8d5 Mon Sep 17 00:00:00 2001 From: gthorp91 <30087238+gthorp91@users.noreply.github.com> Date: Tue, 2 Sep 2025 11:47:07 +0100 Subject: [PATCH 3/3] Update modules/aws_ecs/variables.tf Co-authored-by: roberto-retool <110634506+roberto-retool@users.noreply.github.com> --- modules/aws_ecs/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aws_ecs/variables.tf b/modules/aws_ecs/variables.tf index 45df9a7..6f4260f 100644 --- a/modules/aws_ecs/variables.tf +++ b/modules/aws_ecs/variables.tf @@ -364,7 +364,7 @@ variable "temporal_aurora_instances" { variable "temporal_image" { type = string description = "Docker image for Temporal" - default = "tryretool/one-offs:retool-temporal-1.1.6" + default = "tryretool/one-offs:retool-temporal-1.1.5" } variable "workflows_enabled" {