Skip to content

Commit d5b97aa

Browse files
committed
fix ttl
1 parent 6dd69a8 commit d5b97aa

File tree

3 files changed

+2
-30
lines changed

3 files changed

+2
-30
lines changed

cloudformation/logs.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

terraform/envs/prod/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ resource "aws_dynamodb_table" "app_audit_log" {
7373
type = "N"
7474
}
7575
ttl {
76-
attribute_name = "createdAt"
76+
attribute_name = "expiresAt"
7777
enabled = true
7878
}
7979
}

terraform/envs/qa/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ resource "aws_dynamodb_table" "app_audit_log" {
6060
type = "N"
6161
}
6262
ttl {
63-
attribute_name = "createdAt"
63+
attribute_name = "expiresAt"
6464
enabled = true
6565
}
6666
}

0 commit comments

Comments
 (0)