Skip to content

Commit c7acde3

Browse files
committed
fix attribute name
1 parent 0f5ce36 commit c7acde3

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
@@ -275,7 +275,7 @@ resource "aws_dynamodb_table" "cache" {
275275
type = "S"
276276
}
277277
ttl {
278-
attribute_name = "expiresAt"
278+
attribute_name = "expireAt"
279279
enabled = true
280280
}
281281
}

terraform/envs/qa/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ resource "aws_dynamodb_table" "cache" {
260260
type = "S"
261261
}
262262
ttl {
263-
attribute_name = "expiresAt"
263+
attribute_name = "expireAt"
264264
enabled = true
265265
}
266266
}

0 commit comments

Comments
 (0)