A simple CDK JSON seeder for DynamoDB
Project description
aws-cdk-dynamodb-seeder
A simple CDK JSON seeder for DynamoDB
Why this package
Glad you asked!
Using AWS CDK for automating infrastructure deployments is an amazing way of integrating the development and operations into one process and one codebase.
However, building dev or test environments that come pre-populated with data can be tricky, especially when using Amazon DynamoDB.
How do I use it
Install using your favourite package manager:
yarn add aws-cdk-dynamodb-seeder
Example usage
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
from aws_cdk_dynamodb_seeder import Seeder
my_table = Table(stack, "MyTable",
table_name="MyTable",
partition_key={"name": "Id", "type": AttributeType.STRING}
)
Seeder(stack, "MySeeder",
table=my_table,
table_name="MyTable",
setup=require("./items-to-put.json"),
teardown=require("./keys-to-delete.json"),
refresh_on_update=True
)
For a more in-depth example, see: elegantdevelopment/aws-cdk-dynamodb-seeder-examples.
Importing seed data
Data passed into setup
("Items" to put) or teardown
("Keys" to delete) should be an array
of JavaScript objects (that are, in turn, representations of string
to AttributeValue maps).
setup
elements should use the format ofparams.Item
from AWS.DynamoDB.DocumentClient.put()teardown
elements should use the format ofparams.Key
from AWS.DynamoDB.DocumentClient.delete()
Internals
Behind the scenes we use an AwsCustomResource as a representation of the related table's seed state. The custom resource's event handlers invoke a Function to perform setup and/or teardown actions.
Deploying a stack
On deployment, we write copies of your seed data locally and use a BucketDeployment to write it to an S3 Bucket.
We then create the handler function and custom resource to field seed requests (the onCreate
event will immediate fire as the stack deploys, reading the data from the bucket and seeding the table using AWS.DynamoDB.DocumentClient).
Updating a stack
On a stack update, the onUpdate
handler is triggered when Seeder.props.refreshOnUpdate
is true
.
This will run AWS.DynamoDB.DocumentClient.delete() on every teardown "Key" followed by AWS.DynamoDB.DocumentClient.put() on every setup "Item".
Destroying a stack
When the stack is destroyed, the event handler's onDelete
function will be invoked, providing Seeder.props.teardown
is set.
This simply runs AWS.DynamoDB.DocumentClient.delete() on every teardown "Key" before destroying the Seeder
's resources.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aws-cdk-dynamodb-seeder-1.3.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd479eb0549756528d42586ba8b2631b8a8989fa912a8ecd27d098b63d7991ba |
|
MD5 | 039eaa517fc117539e18fc015d6759d7 |
|
BLAKE2b-256 | 5a2271dcb8da23ac766d9ddca0efd5a43f8d0c079eb34d1f98cdb510a5fbe836 |
Hashes for aws_cdk_dynamodb_seeder-1.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 022e8c1ff083323b78401108d4c4ba8ef6ec391e852dbbbbcc05411357fdd687 |
|
MD5 | c1f51d31816412ce255b0c6d74b0c36c |
|
BLAKE2b-256 | 4204565b615d0bf6c54412d1b055fbca93a91b3c4f5e1e9ac3a67131e10f46b3 |