Skip to content

Commit 7de6127

Browse files
NRL-1582 Add completion window to var def
1 parent 9c14bc4 commit 7de6127

File tree

1 file changed

+3
-1
lines changed
  • terraform/account-wide-infrastructure/modules/backup-source

1 file changed

+3
-1
lines changed

terraform/account-wide-infrastructure/modules/backup-source/variables.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
9698
variable "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
}

0 commit comments

Comments
 (0)