Skip to content

Commit 81b0bc2

Browse files
authored
Merge pull request #219 from tablexi/StopTrackingLastRestorableTime
Stop tracking last restorable time for RDS
2 parents 09928fe + b2fe56e commit 81b0bc2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

aws/rds/main.tf

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ resource "aws_db_instance" "mod" {
6868
var.vpc_security_group_ids,
6969
[aws_security_group.sg_on_rds_instance.id],
7070
)
71+
72+
lifecycle {
73+
ignore_changes = [
74+
latest_restorable_time
75+
]
76+
}
7177
}
7278

7379
resource "aws_security_group" "sg_on_rds_instance" {

0 commit comments

Comments
 (0)