We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d87201 commit 8097daaCopy full SHA for 8097daa
terraform/modules/dynamo/main.tf
@@ -35,21 +35,6 @@ resource "aws_dynamodb_table" "app_audit_log" {
35
stream_view_type = "NEW_AND_OLD_IMAGES"
36
}
37
38
-resource "aws_dynamodb_table" "membership_provisioning_log" {
39
- billing_mode = "PAY_PER_REQUEST"
40
- name = "${var.ProjectId}-membership-provisioning"
41
- deletion_protection_enabled = false
42
- hash_key = "email"
43
- point_in_time_recovery {
44
- enabled = true
45
- }
46
- attribute {
47
- name = "email"
48
- type = "S"
49
50
-}
51
-
52
53
resource "aws_dynamodb_table" "api_keys" {
54
billing_mode = "PAY_PER_REQUEST"
55
name = "${var.ProjectId}-keys"
0 commit comments