Skip to content

Commit

Permalink
Merge pull request #11 from lgallard/fix/completion_window
Browse files Browse the repository at this point in the history
Fix space in completion_window value
  • Loading branch information
lgallard authored Jul 20, 2020
2 parents bc96980 + 7c63282 commit 9085d18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.2 (July 20, 2020)

FIXES:

* Fix space in `completion_window` value

## 0.3.1 (April 17, 2020)

UPDATES:
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resource "aws_backup_plan" "ab_plan" {
target_vault_name = lookup(rule.value, "target_vault_name", null) == null ? var.vault_name : lookup(rule.value, "target_vault_name", "Default")
schedule = lookup(rule.value, "schedule", null)
start_window = lookup(rule.value, "start_window", null)
completion_window = lookup(rule.value, "completion_window ", null)
completion_window = lookup(rule.value, "completion_window", null)
recovery_point_tags = length(lookup(rule.value, "recovery_point_tags")) == 0 ? var.tags : lookup(rule.value, "recovery_point_tags")

# Lifecycle
Expand Down

0 comments on commit 9085d18

Please sign in to comment.