Skip to content

Commit acb3d51

Browse files
authored
fix: Ignore changes to last_restorable_time (#476)
1 parent 7a15fb3 commit acb3d51

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

modules/db_instance/main.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,12 @@ resource "aws_db_instance" "this" {
136136
delete = lookup(var.timeouts, "delete", null)
137137
update = lookup(var.timeouts, "update", null)
138138
}
139+
140+
lifecycle {
141+
ignore_changes = [
142+
latest_restorable_time
143+
]
144+
}
139145
}
140146

141147
################################################################################

0 commit comments

Comments
 (0)