Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/aws_ecs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions modules/aws_ecs/temporal/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
6 changes: 6 additions & 0 deletions modules/aws_ecs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down