Skip to content

Commit

Permalink
Fix a typo in use_existing_temporal_cluster variable (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
NidalShaterM authored Sep 25, 2024
1 parent dcce538 commit b1340f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/aws_ecs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ resource "aws_service_discovery_service" "retool_code_executor_service" {
}

module "temporal" {
count = var.workflows_enabled && !var.use_exising_temporal_cluster ? 1 : 0
count = var.workflows_enabled && !var.use_existing_temporal_cluster ? 1 : 0
source = "./temporal"
deployment_name = "${var.deployment_name}-temporal"
vpc_id = var.vpc_id
Expand Down
2 changes: 1 addition & 1 deletion modules/aws_ecs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ variable "rds_instance_storage_encrypted" {
description = "Whether the RDS instance should have storage encrypted. Defaults to false."
}

variable "use_exising_temporal_cluster" {
variable "use_existing_temporal_cluster" {
type = bool
default = false
description = "Whether to use an already existing Temporal Cluster. Defaults to false. Set to true and set temporal_cluster_config if you already have a Temporal cluster you want to use with Retool."
Expand Down

0 comments on commit b1340f0

Please sign in to comment.