Browse Source

Adds PITR for vault

Brad Poulton 3 năm trước cách đây
mục cha
commit
7a78157396
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      base/vault/dynamodb.tf

+ 4 - 0
base/vault/dynamodb.tf

@@ -14,6 +14,10 @@ resource "aws_dynamodb_table" "vault" {
     type = "S"
   }
 
+  point_in_time_recovery {
+    enabled = true
+  }
+
   tags = merge(var.standard_tags, var.tags)
 }