From 7ea126e91a91a6998bf0e89bb5c27e30bfd803a5 Mon Sep 17 00:00:00 2001 From: vinothrallapalli-eGov Date: Tue, 25 Nov 2025 12:02:19 +0530 Subject: [PATCH 1/3] Change continue-on-error to false to throw error if infra creation fails --- .github/workflows/digit_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/digit_install.yml b/.github/workflows/digit_install.yml index e86c5421..686db2ee 100644 --- a/.github/workflows/digit_install.yml +++ b/.github/workflows/digit_install.yml @@ -155,7 +155,7 @@ jobs: - name: Terraform Apply - remotestate id: apply run: terraform apply -no-color -input=false -auto-approve - continue-on-error: true + continue-on-error: false working-directory: devops/infra-as-code/terraform/sample-aws/remote-state - name: Terraform init - Infra creation id: init-Infra From 3b86545cf9f37f81a6f76cc1e5e33634e1710663 Mon Sep 17 00:00:00 2001 From: vinothrallapalli-eGov Date: Tue, 25 Nov 2025 12:03:33 +0530 Subject: [PATCH 2/3] enable monitoring by default --- devops/deploy-as-code/digit-helmfile.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/devops/deploy-as-code/digit-helmfile.yaml b/devops/deploy-as-code/digit-helmfile.yaml index da574114..f745b8ec 100644 --- a/devops/deploy-as-code/digit-helmfile.yaml +++ b/devops/deploy-as-code/digit-helmfile.yaml @@ -14,6 +14,5 @@ helmfiles: - path: ./charts/urban/urban-helmfile.yaml - path: ./charts/common-services/common-services-helmfile.yaml - path: ./charts/analytics/analytics-helmfile.yaml -# - path: ./charts/sanitation/sanitation-helmfile.yaml - path: ./charts/auxiliary-services/auxiliary-helmfile.yaml -# - path: ./charts/monitoring/monitoring-helmfile.yaml + - path: ./charts/monitoring/monitoring-helmfile.yaml From 7eeab355abedd11f1111cfcc7871ec7f0312da60 Mon Sep 17 00:00:00 2001 From: vinothrallapalli-eGov Date: Tue, 25 Nov 2025 13:57:16 +0530 Subject: [PATCH 3/3] Update default PostgreSQL version to 15.12 --- devops/infra-as-code/terraform/sample-aws/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devops/infra-as-code/terraform/sample-aws/variables.tf b/devops/infra-as-code/terraform/sample-aws/variables.tf index 43dacd23..e9c23526 100644 --- a/devops/infra-as-code/terraform/sample-aws/variables.tf +++ b/devops/infra-as-code/terraform/sample-aws/variables.tf @@ -56,7 +56,7 @@ variable "max_worker_nodes" { variable "db_version" { description = "postgres version" - default = "15.8" + default = "15.12" } variable "db_instance_type" {