From 5fc45b1a7e393ff2946b6d19e11fd1a0feccdead Mon Sep 17 00:00:00 2001 From: Jamil Date: Thu, 13 Mar 2025 14:24:01 -0500 Subject: [PATCH] chore(infra): Increase PG backups to 30 days (#8433) These are currently 7. It would be good to have more retention here. --- terraform/modules/google-cloud/sql/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/modules/google-cloud/sql/main.tf b/terraform/modules/google-cloud/sql/main.tf index 965a6ec5b..26a70fb73 100644 --- a/terraform/modules/google-cloud/sql/main.tf +++ b/terraform/modules/google-cloud/sql/main.tf @@ -75,7 +75,7 @@ resource "google_sql_database_instance" "master" { point_in_time_recovery_enabled = length(var.database_read_replica_locations) > 0 ? true : var.database_backups_enabled backup_retention_settings { - retained_backups = 7 + retained_backups = 30 } }