chore(infra): Increase PG backups to 30 days (#8433)

These are currently 7. It would be good to have more retention here.
This commit is contained in:
Jamil
2025-03-13 14:24:01 -05:00
committed by GitHub
parent ab794dd52d
commit 5fc45b1a7e

View File

@@ -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
}
}