Skip to content

Commit 5b14c24

Browse files
Add reasonCode and reasonText to db
1 parent 57ae2e2 commit 5b14c24

File tree

11 files changed

+137
-542
lines changed

11 files changed

+137
-542
lines changed

infrastructure/terraform/components/api/ddb_table_letters.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,16 @@ resource "aws_dynamodb_table" "letters" {
3737
type = "S"
3838
}
3939

40+
attribute {
41+
name = "reasonCode"
42+
type = "N"
43+
}
44+
45+
attribute {
46+
name = "reasonText"
47+
type = "S"
48+
}
49+
4050
point_in_time_recovery {
4151
enabled = true
4252
}

0 commit comments

Comments
 (0)