updated the retention days variable to allow null, thats defualt by definition as null represent 0 (#3919)

This commit is contained in:
Suryansh Singhal
2026-04-28 17:52:08 +05:30
committed by GitHub
parent c0ee6842c6
commit 35615dd967

View File

@@ -45,7 +45,7 @@ variable "backup_configuration" {
retain_backups_on_delete = optional(bool) retain_backups_on_delete = optional(bool)
final_backup = optional(object({ final_backup = optional(object({
enabled = optional(bool, false) enabled = optional(bool, false)
retention_days = optional(number, 7) retention_days = optional(number)
})) }))
}) })
default = null default = null