Skip to content

Commit fed9476

Browse files
committed
disable PITR for cache
1 parent c7acde3 commit fed9476

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

terraform/envs/prod/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ resource "aws_dynamodb_table" "cache" {
268268
deletion_protection_enabled = true
269269
hash_key = "primaryKey"
270270
point_in_time_recovery {
271-
enabled = true
271+
enabled = false
272272
}
273273
attribute {
274274
name = "primaryKey"

terraform/envs/qa/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ resource "aws_dynamodb_table" "cache" {
253253
deletion_protection_enabled = true
254254
hash_key = "primaryKey"
255255
point_in_time_recovery {
256-
enabled = true
256+
enabled = false
257257
}
258258
attribute {
259259
name = "primaryKey"

0 commit comments

Comments
 (0)