diff --git a/services/terraform/dynamodb-test.tf b/services/terraform/dynamodb-test.tf index fab86bc0a..f6714b735 100644 --- a/services/terraform/dynamodb-test.tf +++ b/services/terraform/dynamodb-test.tf @@ -1,164 +1,164 @@ resource "aws_dynamodb_table" "backup-service-backup-test" { name = "backup-service-backup-test" hash_key = "userID" range_key = "backupID" write_capacity = 10 read_capacity = 10 attribute { name = "userID" type = "S" } attribute { name = "backupID" type = "S" } attribute { name = "created" type = "S" } global_secondary_index { name = "userID-created-index" hash_key = "userID" range_key = "created" write_capacity = 10 read_capacity = 10 projection_type = "INCLUDE" non_key_attributes = ["recoveryData"] } } resource "aws_dynamodb_table" "backup-service-log-test" { name = "backup-service-log-test" hash_key = "backupID" range_key = "logID" write_capacity = 10 read_capacity = 10 attribute { name = "backupID" type = "S" } attribute { name = "logID" type = "S" } } resource "aws_dynamodb_table" "blob-service-blob-test" { name = "blob-service-blob-test" hash_key = "blobHash" write_capacity = 10 read_capacity = 10 attribute { name = "blobHash" type = "S" } } resource "aws_dynamodb_table" "blob-service-reverse-index-test" { name = "blob-service-reverse-index-test" hash_key = "holder" write_capacity = 10 read_capacity = 10 attribute { name = "holder" type = "S" } attribute { name = "blobHash" type = "S" } global_secondary_index { name = "blobHash-index" hash_key = "blobHash" write_capacity = 10 read_capacity = 10 projection_type = "ALL" } } resource "aws_dynamodb_table" "tunnelbroker-device-sessions-test" { name = "tunnelbroker-device-sessions-test" - hash_key = "SessionId" + hash_key = "SessionID" write_capacity = 10 read_capacity = 10 attribute { - name = "SessionId" + name = "SessionID" type = "S" } ttl { attribute_name = "Expire" enabled = true } } resource "aws_dynamodb_table" "tunnelbroker-verification-messages-test" { name = "tunnelbroker-verification-messages-test" - hash_key = "DeviceId" + hash_key = "DeviceID" write_capacity = 10 read_capacity = 10 attribute { - name = "DeviceId" + name = "DeviceID" type = "S" } ttl { attribute_name = "Expire" enabled = true } } resource "aws_dynamodb_table" "tunnelbroker-public-keys-test" { name = "tunnelbroker-public-keys-test" - hash_key = "DeviceId" + hash_key = "DeviceID" write_capacity = 10 read_capacity = 10 attribute { - name = "DeviceId" + name = "DeviceID" type = "S" } } resource "aws_dynamodb_table" "tunnelbroker-messages-test" { name = "tunnelbroker-messages-test" hash_key = "ToDeviceID" range_key = "MessageID" write_capacity = 10 read_capacity = 10 attribute { name = "MessageID" type = "S" } attribute { name = "ToDeviceID" type = "S" } global_secondary_index { name = "ToDeviceID-index" hash_key = "ToDeviceID" write_capacity = 10 read_capacity = 10 projection_type = "ALL" } ttl { attribute_name = "Expire" enabled = true } } diff --git a/services/terraform/dynamodb.tf b/services/terraform/dynamodb.tf index 31ef0257a..88f9373b1 100644 --- a/services/terraform/dynamodb.tf +++ b/services/terraform/dynamodb.tf @@ -1,220 +1,220 @@ resource "aws_dynamodb_table" "backup-service-backup" { name = "backup-service-backup" hash_key = "userID" range_key = "backupID" write_capacity = 10 read_capacity = 10 attribute { name = "userID" type = "S" } attribute { name = "backupID" type = "S" } attribute { name = "created" type = "S" } global_secondary_index { name = "userID-created-index" hash_key = "userID" range_key = "created" write_capacity = 10 read_capacity = 10 projection_type = "INCLUDE" non_key_attributes = ["recoveryData"] } } resource "aws_dynamodb_table" "backup-service-log" { name = "backup-service-log" hash_key = "backupID" range_key = "logID" write_capacity = 10 read_capacity = 10 attribute { name = "backupID" type = "S" } attribute { name = "logID" type = "S" } } resource "aws_dynamodb_table" "blob-service-blob" { name = "blob-service-blob" hash_key = "blobHash" write_capacity = 10 read_capacity = 10 attribute { name = "blobHash" type = "S" } } resource "aws_dynamodb_table" "blob-service-reverse-index" { name = "blob-service-reverse-index" hash_key = "holder" write_capacity = 10 read_capacity = 10 attribute { name = "holder" type = "S" } attribute { name = "blobHash" type = "S" } global_secondary_index { name = "blobHash-index" hash_key = "blobHash" write_capacity = 10 read_capacity = 10 projection_type = "ALL" } } resource "aws_dynamodb_table" "tunnelbroker-device-sessions" { name = "tunnelbroker-device-sessions" - hash_key = "SessionId" + hash_key = "SessionID" write_capacity = 10 read_capacity = 10 attribute { - name = "SessionId" + name = "SessionID" type = "S" } ttl { attribute_name = "Expire" enabled = true } } resource "aws_dynamodb_table" "tunnelbroker-verification-messages" { name = "tunnelbroker-verification-messages" - hash_key = "DeviceId" + hash_key = "DeviceID" write_capacity = 10 read_capacity = 10 attribute { - name = "DeviceId" + name = "DeviceID" type = "S" } ttl { attribute_name = "Expire" enabled = true } } resource "aws_dynamodb_table" "tunnelbroker-public-keys" { name = "tunnelbroker-public-keys" - hash_key = "DeviceId" + hash_key = "DeviceID" write_capacity = 10 read_capacity = 10 attribute { - name = "DeviceId" + name = "DeviceID" type = "S" } } resource "aws_dynamodb_table" "tunnelbroker-messages" { name = "tunnelbroker-messages" hash_key = "ToDeviceID" range_key = "MessageID" write_capacity = 10 read_capacity = 10 attribute { name = "MessageID" type = "S" } attribute { name = "ToDeviceID" type = "S" } global_secondary_index { name = "ToDeviceID-index" hash_key = "ToDeviceID" write_capacity = 10 read_capacity = 10 projection_type = "ALL" } ttl { attribute_name = "Expire" enabled = true } } resource "aws_dynamodb_table" "identity-users" { name = "identity-users" hash_key = "userID" write_capacity = 10 read_capacity = 10 attribute { name = "userID" type = "S" } attribute { name = "username" type = "S" } attribute { name = "walletAddress" type = "S" } global_secondary_index { name = "username-index" hash_key = "username" write_capacity = 10 read_capacity = 10 projection_type = "KEYS_ONLY" } global_secondary_index { name = "walletAddress-index" hash_key = "walletAddress" write_capacity = 10 read_capacity = 10 projection_type = "KEYS_ONLY" } } resource "aws_dynamodb_table" "identity-tokens" { name = "identity-tokens" hash_key = "userID" range_key = "deviceID" write_capacity = 10 read_capacity = 10 attribute { name = "userID" type = "S" } attribute { name = "deviceID" type = "S" } }