Skip to content

Commit a7657b3

Browse files
authored
remove lifecycle args on dynamodb (#96)
1 parent 9688e5a commit a7657b3

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

main.tf

-16
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,6 @@ resource "aws_dynamodb_table" "with_server_side_encryption" {
217217
enabled = var.enable_point_in_time_recovery
218218
}
219219

220-
lifecycle {
221-
ignore_changes = [
222-
billing_mode,
223-
read_capacity,
224-
write_capacity,
225-
]
226-
}
227-
228220
attribute {
229221
name = "LockID"
230222
type = "S"
@@ -247,14 +239,6 @@ resource "aws_dynamodb_table" "without_server_side_encryption" {
247239
enabled = var.enable_point_in_time_recovery
248240
}
249241

250-
lifecycle {
251-
ignore_changes = [
252-
billing_mode,
253-
read_capacity,
254-
write_capacity,
255-
]
256-
}
257-
258242
attribute {
259243
name = "LockID"
260244
type = "S"

0 commit comments

Comments
 (0)