diff --git a/services/terraform/dynamodb.tf b/services/terraform/dynamodb.tf --- a/services/terraform/dynamodb.tf +++ b/services/terraform/dynamodb.tf @@ -210,3 +210,15 @@ type = "S" } } + +resource "aws_dynamodb_table" "identity-nonces" { + name = "identity-nonces" + hash_key = "nonce" + write_capacity = 10 + read_capacity = 10 + + attribute { + name = "nonce" + type = "S" + } +}