Skip to content

Commit

Permalink
fix: Ignore changes to last_restorable_time (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
bathomas committed Feb 7, 2023
1 parent 7a15fb3 commit acb3d51
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 @@ -136,6 +136,12 @@ resource "aws_db_instance" "this" {
delete = lookup(var.timeouts, "delete", null)
update = lookup(var.timeouts, "update", null)
}

lifecycle {
ignore_changes = [
latest_restorable_time
]
}
}

################################################################################
Expand Down

0 comments on commit acb3d51

Please sign in to comment.