From af9f73e9ee939068deec4829dec2f63f6a1ce5f4 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 3 Feb 2026 20:04:38 +0000 Subject: [PATCH] reduce default to 10 --- .../terraform/modules/container_registry/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/container_registry/variables.tf b/infrastructure/terraform/modules/container_registry/variables.tf index 501a5044..11821b31 100644 --- a/infrastructure/terraform/modules/container_registry/variables.tf +++ b/infrastructure/terraform/modules/container_registry/variables.tf @@ -11,5 +11,5 @@ variable "stage" { variable "retain_count" { description = "Number of images to retain" type = number - default = 20 + default = 10 }