diff --git a/services/terraform/remote/service_identity.tf b/services/terraform/remote/service_identity.tf --- a/services/terraform/remote/service_identity.tf +++ b/services/terraform/remote/service_identity.tf @@ -1,5 +1,5 @@ locals { - identity_service_image_tag = "0.10" + identity_service_image_tag = local.is_staging ? "0.12-staging" : "0.10" identity_service_server_image = "commapp/identity-server:${local.identity_service_image_tag}" identity_service_container_name = "identity-server" @@ -31,7 +31,7 @@ http://localhost:3006, http://localhost:3007, http://localhost:3008, - http://localhost:3009, + http://localhost:3009 EOT production_allow_origin_list = "https://web.comm.app" } @@ -124,7 +124,7 @@ task_definition = aws_ecs_task_definition.identity_service.arn force_new_deployment = true - desired_count = 1 + desired_count = 2 # Expose Identity service to other services in the cluster service_connect_configuration {