Skip to content

Commit

Permalink
feat: Added latest_restorable_time to ignore_changes (#356)
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Babenko <anton@antonbabenko.com>
  • Loading branch information
FieryCod and antonbabenko authored Jan 12, 2022
1 parent 998313c commit 77902c2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/db_instance/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ resource "aws_db_instance" "this" {
delete = lookup(var.timeouts, "delete", null)
update = lookup(var.timeouts, "update", null)
}

lifecycle {
ignore_changes = [
latest_restorable_time
]
}
}

resource "aws_db_instance" "this_mssql" {
Expand Down

0 comments on commit 77902c2

Please sign in to comment.