Skip to main content

CDK construct to periodically take snapshots of RDS databases, sanitize them, and share with selected accounts.

Project description

CDK Construct for RDS Sanitized Snapshots

NPM PyPI Maven Central Go Nuget Release License

Periodically take snapshots of RDS databases, sanitize them, and share with selected accounts.

Use this to automate your development and/or QA database creation, instead of forcing them to use a database that was created last year and was kind of kept in shape by random acts of kindness. Developers and QA love real data and this lets you create non-production databases with sanitized production data. Use the sanitization step to delete passwords, remove credit card numbers, eliminate PII, etc.

See Constructs Hub for installation instructions and API in all supported languages.

Overview

Architecture diagram

This project supplies a CDK construct that sets up a step function and a timer to execute this function. The function will create a sanitized snapshot of a given database and share it with configured accounts. Those accounts can then create new databases from those snapshots.

The step function does the following to create the snapshot:

  1. Get a snapshot of the given database by either:

    • Finding the latest snapshot for the given database
    • Creating and waiting for a new fresh snapshot
  2. Re-encrypt snapshot if KMS key is supplied

  3. Create a temporary database from the snapshot

  4. Wait for the database to be ready

  5. Reset the master password on the temporary database to a random password

  6. Wait for the password to be set

  7. Use a Fargate task to connect to the temporary database and run configured SQL statements to sanitize the data

  8. Take a snapshot of the temporary database

  9. Optionally share the snapshot with other accounts (if you have separate accounts for developers/QA)

  10. Delete temporary database and snapshot

Usage

  1. Confirm you're using CDK v2

  2. Install the appropriate package

    1. Python

      pip install cloudsnorkel.cdk-rds-sanitized-snapshots
      
    2. TypeScript or JavaScript

      npm i @cloudsnorkel/cdk-rds-sanitized-snapshots
      
    3. Java

      <dependency>
      <groupId>com.cloudsnorkel</groupId>
      <artifactId>cdk.rds.sanitized-snapshots</artifactId>
      </dependency>
      
    4. Go

      go get github.com/CloudSnorkel/cdk-rds-sanitized-snapshots-go/cloudsnorkelcdkrdssanitizedsnapshots
      
    5. .NET

      dotnet add package CloudSnorkel.Cdk.Rds.SanitizedSnapshots
      
  3. Use RdsSanitizedSnapshotter construct in your code (starting with default arguments is fine)

Code Sample

let vpc: ec2.Vpc;
let databaseInstance: rds.DatabaseInstance;

new RdsSanitizedSnapshotter(this, 'Snapshotter', {
  vpc: vpc,
  databaseInstance: databaseInstance,
  script: 'USE mydb; UPDATE users SET ssn = \'0000000000\'',
})

Encryption

The new snapshot will be encrypted with the same key used by the original database. If the original database wasn't encrypted, the snapshot won't be encrypted either. To add another step that changes the key, use the KMS key parameter.

See AWS documentation for instructions on giving other accounts access to the key.

Troubleshooting

  • Check the status of the state machine for the step function. Click on the failed step and check out the input, output and exception.

Testing

npm run bundle && npm run integ:default:deploy

Project details


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

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file cloudsnorkel_cdk_rds_sanitized_snapshots-0.1.6.tar.gz.

File metadata

File hashes

Hashes for cloudsnorkel_cdk_rds_sanitized_snapshots-0.1.6.tar.gz
Algorithm Hash digest
SHA256 049918ef9166ef5a057cbf628d3cc44360cd7bf8e876fa0247a2d6573e1a575d
MD5 cda5d8e8e58aeb11cd0940c613c1a2aa
BLAKE2b-256 f7aceb378b88604d08e478a0dc8133b391d3cb9fe4bb306a341cb16349eb1cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cloudsnorkel_cdk_rds_sanitized_snapshots-0.1.6.tar.gz:

Publisher: release.yml on CloudSnorkel/cdk-rds-sanitized-snapshots

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cloudsnorkel_cdk_rds_sanitized_snapshots-0.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for cloudsnorkel_cdk_rds_sanitized_snapshots-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 247069e47872b0539f8f12907b5dc065e910b2e22e41b7e5e38f4ed718dea016
MD5 c0037bbe8a8081008492fa277847a633
BLAKE2b-256 028ae027d19bcedaceaa988e18b4878cce10cf7108493385c8322626366e1b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for cloudsnorkel_cdk_rds_sanitized_snapshots-0.1.6-py3-none-any.whl:

Publisher: release.yml on CloudSnorkel/cdk-rds-sanitized-snapshots

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page