Create dynamoDB table for storing undelivered
messages
Details
Details
# start localstack comm-dev services start # ensure that tunnelbroker-undelivered-messages table is created cd services/terraform ./run.sh
Diff Detail
Diff Detail
- Repository
- rCOMM Comm
- Lint
No Lint Coverage - Unit
No Test Coverage
Event Timeline
services/terraform/dynamodb.tf | ||
---|---|---|
101–104 | In other places, we use the RFC3339 string as a timestamp. Not sure if it is a good candidate for a range key though |
services/terraform/dynamodb.tf | ||
---|---|---|
101–104 | I just intend to use this to order the messages, so seconds from EPOCH seems like a simple yet effective way to achieve this. This also avoids having to parse the date back in. |
services/terraform/dynamodb.tf | ||
---|---|---|
101–104 | That makes sense, thanks for explaining |