Skip to content

Commit 0f2dcb9

Browse files
committed
feat: add defaults values from backup retention and backup window
1 parent 78ff15e commit 0f2dcb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ module "db_instance" {
128128

129129
replicate_source_db = var.replicate_source_db
130130
replica_mode = var.replica_mode
131-
backup_retention_period = var.backup_retention_period != null ? var.backup_retention_period : 1
132-
backup_window = var.backup_window != null ? var.backup_window : "00:00-01:00"
131+
backup_retention_period = var.backup_retention_period != null ? var.backup_retention_period : 1
132+
backup_window = var.backup_window != null ? var.backup_window : "00:00-01:00"
133133
max_allocated_storage = var.max_allocated_storage
134134
monitoring_interval = var.monitoring_interval
135135
monitoring_role_arn = var.monitoring_role_arn

0 commit comments

Comments
 (0)