aws/deploy/deployDynamo.js

  1. /**
  2. * Exports an async function that deploys the DynamoDB database
  3. * @module deployDynamo
  4. */
  5. const {
  6. DynamoDBClient,
  7. CreateTableCommand,
  8. } = require("@aws-sdk/client-dynamodb");
  9. const logger = require("../../utils/logger")("dev");
  10. /**
  11. * Function that creates the DynamoDB with one attribute, a string "usertoken" and leaves the provisioned Throupt as default at 5 for both Read and Write capacity units.
  12. * @param {DynamoDBClient} dynamodb Looks like 'new DynamoDBClient({ region })`
  13. * @param {String} dynamoName Constant initialized as `beekeeper-${PROFILE_NAME}-ddb`
  14. * @returns {String} Returns the ARN of a TableDescription
  15. */
  16. const createDynamo = async (dynamodb, dynamoName) => {
  17. const params = {
  18. AttributeDefinitions: [
  19. {
  20. AttributeName: "usertoken",
  21. AttributeType: "S",
  22. },
  23. ],
  24. KeySchema: [
  25. {
  26. AttributeName: "usertoken",
  27. KeyType: "HASH",
  28. },
  29. ],
  30. TableName: dynamoName,
  31. ProvisionedThroughput: {
  32. ReadCapacityUnits: 5,
  33. WriteCapacityUnits: 5,
  34. },
  35. };
  36. const command = new CreateTableCommand(params);
  37. try {
  38. const { TableDescription } = await dynamodb.send(command);
  39. logger.debugSuccess(`Successfully created DynamoDB table: ${dynamoName}`);
  40. return TableDescription.TableArn;
  41. } catch (err) {
  42. logger.debugError("Error", err);
  43. throw new Error(err);
  44. }
  45. };
  46. /**
  47. * Exports deployDynamo
  48. * @param {String} region A constant destructured from the CLI user's answers in `deploy.js`. Like "us-east-2".
  49. * @param {String} dynamoName Constant initialized as `beekeeper-${PROFILE_NAME}-ddb`
  50. * @returns {String} Returns the ARN of the table for the DynamoDB
  51. */
  52. module.exports = async (region, dynamoName) => {
  53. // Create an DDB client service object
  54. const dynamodb = new DynamoDBClient({ region });
  55. // Create DynamoDB
  56. const tableArn = await createDynamo(dynamodb, dynamoName);
  57. return tableArn;
  58. };