From 9d0f21c5bebd7b79d821878e1d5b232a495756d2 Mon Sep 17 00:00:00 2001 From: Stephen Lacy Date: Fri, 8 Nov 2024 12:57:41 -0800 Subject: [PATCH] fix(horde): add JwtIssuer to ensure container retains agents on restart --- modules/unreal/horde/ecs.tf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/unreal/horde/ecs.tf b/modules/unreal/horde/ecs.tf index a00ce561..0a85a22d 100644 --- a/modules/unreal/horde/ecs.tf +++ b/modules/unreal/horde/ecs.tf @@ -76,7 +76,11 @@ resource "aws_ecs_task_definition" "unreal_horde_task_definition" { { name = "Horde__databasePublicCert", value = "/app/config/global-bundle.pem" - } + }, + { + name = "Horde__jwtIssuer", + value = "https://${var.fully_qualified_domain_name}" + }, ], local.horde_service_env) logConfiguration = { logDriver = "awslogs"