From 92b6bfc5275951937605407d5a47159161cd5f53 Mon Sep 17 00:00:00 2001 From: Ian Jones <82970911+IanJones4@users.noreply.github.com> Date: Tue, 7 Nov 2023 12:22:23 -0500 Subject: [PATCH] Match default retention and backup window to AWS Backup policy --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 1b4614d..9018b8d 100644 --- a/variables.tf +++ b/variables.tf @@ -82,13 +82,13 @@ variable "skip_final_snapshot" { variable "backup_retention_period" { type = string - default = "7" + default = "31" description = "How long to keep backups for (in days)" } variable "preferred_backup_window" { type = string - default = "02:00-03:00" + default = "22:00-00:00" description = "When to perform DB backups" }