File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
terraform/account-wide-infrastructure/modules/backup-source Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ variable "backup_plan_config" {
8181 rules = list (object ({
8282 name = string
8383 schedule = string
84+ completion_window = optional (number )
8485 enable_continuous_backup = optional (bool )
8586 lifecycle = object ({
8687 delete_after = optional (number )
@@ -93,6 +94,7 @@ variable "backup_plan_config" {
9394 }))
9495 })
9596}
97+
9698variable "backup_plan_config_dynamodb" {
9799 description = " Configuration for backup plans with dynamodb"
98100 type = object ({
@@ -102,6 +104,7 @@ variable "backup_plan_config_dynamodb" {
102104 rules = optional (list (object ({
103105 name = string
104106 schedule = string
107+ completion_window = optional (number )
105108 enable_continuous_backup = optional (bool )
106109 lifecycle = object ({
107110 delete_after = number
@@ -113,5 +116,4 @@ variable "backup_plan_config_dynamodb" {
113116 })))
114117 })))
115118 })
116-
117119}
You can’t perform that action at this time.
0 commit comments