Skip to content

Commit 77902c2

Browse files
feat: Added latest_restorable_time to ignore_changes (#356)
Co-authored-by: Anton Babenko <[email protected]>
1 parent 998313c commit 77902c2

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
@@ -115,6 +115,12 @@ resource "aws_db_instance" "this" {
115115
delete = lookup(var.timeouts, "delete", null)
116116
update = lookup(var.timeouts, "update", null)
117117
}
118+
119+
lifecycle {
120+
ignore_changes = [
121+
latest_restorable_time
122+
]
123+
}
118124
}
119125

120126
resource "aws_db_instance" "this_mssql" {

0 commit comments

Comments
 (0)