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..8b716d1 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.5" } variable "secret_length" { diff --git a/modules/aws_ecs/variables.tf b/modules/aws_ecs/variables.tf index b6e127a..6f4260f 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.5" +} + variable "workflows_enabled" { type = bool default = false