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
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
services/terraform/dynamodb.tf | ||
---|---|---|
101–104 ↗ | (On Diff #26132) | 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 ↗ | (On Diff #26132) | 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 ↗ | (On Diff #26132) | That makes sense, thanks for explaining |