From a7f9bc5945e537cc2d9a5e6e46d483c4ab91a1e9 Mon Sep 17 00:00:00 2001 From: AF <4775679+datalek@users.noreply.github.com> Date: Wed, 3 Apr 2024 12:40:19 +0200 Subject: [PATCH] [DEV-1574] Increase `desired_count` of cms-ecs in production (#803) --- .changeset/many-onions-explain.md | 5 +++++ apps/infrastructure/src/ecs.tf | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/many-onions-explain.md diff --git a/.changeset/many-onions-explain.md b/.changeset/many-onions-explain.md new file mode 100644 index 0000000000..960d8f2424 --- /dev/null +++ b/.changeset/many-onions-explain.md @@ -0,0 +1,5 @@ +--- +"infrastructure": patch +--- + +[DEV-1574] Increase `desired_count` of cms-ecs in production diff --git a/apps/infrastructure/src/ecs.tf b/apps/infrastructure/src/ecs.tf index 3d82ab2d26..5056ad080d 100644 --- a/apps/infrastructure/src/ecs.tf +++ b/apps/infrastructure/src/ecs.tf @@ -58,7 +58,7 @@ module "cms_ecs_service" { name = "cms-ecs" cluster_arn = module.cms_ecs_cluster.arn - desired_count = var.environment == "dev" ? 1 : 0 + desired_count = 1 create_task_definition = false create_iam_role = false create_task_exec_iam_role = false