Skip to content

Commit

Permalink
remove lifecycle args on dynamodb (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocode authored Aug 18, 2021
1 parent 9688e5a commit a7657b3
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,6 @@ resource "aws_dynamodb_table" "with_server_side_encryption" {
enabled = var.enable_point_in_time_recovery
}

lifecycle {
ignore_changes = [
billing_mode,
read_capacity,
write_capacity,
]
}

attribute {
name = "LockID"
type = "S"
Expand All @@ -247,14 +239,6 @@ resource "aws_dynamodb_table" "without_server_side_encryption" {
enabled = var.enable_point_in_time_recovery
}

lifecycle {
ignore_changes = [
billing_mode,
read_capacity,
write_capacity,
]
}

attribute {
name = "LockID"
type = "S"
Expand Down

0 comments on commit a7657b3

Please sign in to comment.