From 379007e1e88f04081f72814a6b0a009c72e167fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Fri, 2 May 2025 13:06:40 +0100 Subject: [PATCH 1/2] infra: version bump --- terraform/locals.tf | 2 +- terraform/service_app.tf | 20 ++++---------------- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/terraform/locals.tf b/terraform/locals.tf index d41b63b..46b8fe3 100644 --- a/terraform/locals.tf +++ b/terraform/locals.tf @@ -2,7 +2,7 @@ locals { namespace = "one-roof-${var.env}" image = { repo = "commitglobal/one-roof", - tag = "0.4.1" + tag = "0.5.0" } availability_zone = data.aws_availability_zones.current.names[0] diff --git a/terraform/service_app.tf b/terraform/service_app.tf index 51cc4c3..fa3a089 100644 --- a/terraform/service_app.tf +++ b/terraform/service_app.tf @@ -111,22 +111,10 @@ module "ecs_app" { name = "SENTRY_PROFILES_SAMPLE_RATE" value = 0.5 }, - # { - # name = "AWS_BUCKET_ROOT" - # value = "media" - # }, - # { - # name = "REDIS_HOST" - # value = aws_elasticache_cluster.main.cache_nodes.0.address - # }, - # { - # name = "REDIS_PORT" - # value = aws_elasticache_cluster.main.cache_nodes.0.port - # }, - # { - # name = "SCOUT_DRIVER", - # value = "typesense" - # }, + { + name = "SCOUT_DRIVER", + value = "database" + }, { name = "PHP_PM_MAX_CHILDREN", value = 128 From 90320fe8bd1702a3cde88cf9f72b0db2c9c87d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Fri, 2 May 2025 13:06:49 +0100 Subject: [PATCH 2/2] cleanup --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 8f0de65..aab1be1 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,5 +14,8 @@ trim_trailing_whitespace = false [*.{yml,yaml}] indent_size = 2 +[*.tf] +indent_size = 2 + [docker-compose.yml] indent_size = 4