Skip to main content

An AWS CDK construct for creating a secret in AWS Secrets Manager, without losing manually changed values.

Project description

@matthewbonig/secrets

The AWS Secrets Manager Secret construct has a big footgun, if you update the generateSecretString property, the secret gets recreated! This isn't exactly a flaw of the CDK, but of how CloudFormation handles this property.

So, this library has a single construct with a single intention, to allow you to update the generateSecretString property without recreating the secret.

[!WARNING] If you have an existing aws-cdk-lib/aws_secretsmanager.Secret, you can replace it with this new construct. However, when you update your stack the existing value will be completely wiped out and re-created using the new construct. Make a backup of your secret before using this new construct on an existing secret.

Design Philosophy

Secrets are the AWS-preferred method for passing configuration values to runtime components. However, with the existing secret it's painful to manage the contents of a secret over the life of a project. You can't provide all your configuration values directly in your generateSecretString property because you'll then likely expose sensitive IaC. However, you also can't just leave this field completely blank because it will either make post-deployment changes to the secret more error-prone (as someone may manually enter in field names incorrectly) or it will make it impossible for some services to work at all until a post-deployment change is made, like ECS.

So, this construct is designed to make it so you can update the generateSecretString property without recreating the secret. This allows you to define the basic shape of a secret through your IaC ensuring that post-deployment updates are done with fewer errors.

It is a fundamental principle of this construct that:

  • The values stored in secrets are required to be updated manually outside of the IaC process.
  • The shape of the secret is defined in the IaC process.
  • Changes to the shape of the secret are made through the IaC process.
  • Changes to the shape and values of the secret in IaC do not affect fields and values that were not changed in IaC.
  • Changes made to the value of the secret through an outside process are retained unless explicitly changed through IaC.

Usage

import { Secret } from '@matthewbonig/secrets';
// ....
new Secret(this, 'MySecret', {
  generateSecretString: {
    generateStringKey: 'password',
    secretStringTemplate: JSON.stringify({
      username: 'my-username',
      password: 'some-password',
    }),
  },
});

This is a drop-in replacement, and has the same API surface area as the original aws_secretsmanager.Secret construct. The difference is that the generateSecretString property can be updated without recreating the secret.

There are a few different scenarios when you make changes to the generateSecretString property:

  1. No change: If you don't change the generateSecretString property, the secret will not be updated.
  2. Change: If you change the generateSecretString property, by adding a new property, the secret will be updated, and only the new property will be changed. For example, if you add 'api-key' to the object then the secret will get the additional 'api-key' field added to it and all other properties will not be affected.
  3. Change: If you update the value of an existing property on the generateSecretString property, the secret will be updated, and only the updated property will be changed. For example, if you change the value of 'password' to a new value, then only the 'password' property will be updated on the secret.
  4. Change: If you change the generateStringKey field, then a new field will be added to the secret. The previously generated field will not be removed from the secret.
  5. Change: If you change any of the properties that define how the generateStringKey should be generated, like the excludePunctuation property, then the field specified by the generateStringKey will be regenerated with the new parameters and the other fields will remain unchanged.
  6. Remove: If you remove a property from the generateSecretString property, the secret will be updated, and the property will be removed from the secret and all other properties will remain unchanged.

Example

Let's begin with a simple secret with two fields, username and password.

new Secret(this, 'MySecret', {
  generateSecretString: {
    generateStringKey: 'password',
    secretStringTemplate: JSON.stringify({
      username: 'my-username',
      password: 'some-password',
    }),
  },
});

You can update the fields manually. Let's say you update the password field:

{
  "username": "my-username",
  "password": "new-password"
}

Later, you update the Secret and add a new field to the generateSecretString property:

new Secret(this, 'MySecret', {
  generateSecretString: {
    generateStringKey: 'password',
    secretStringTemplate: JSON.stringify({
      username: 'my-username',
      password: 'some-password',
      someNewField: 'some-new-value',
    }),
  },
});

When deployed, the someNewField will be added to the secret but the other fields will remain unchanged.

Later on, you can also update the generateSecretString property and update an existing field:

new Secret(this, 'MySecret', {
  generateSecretString: {
    generateStringKey: 'password',
    secretStringTemplate: JSON.stringify({
      username: 'my-username',
      password: 'some-new-password',
      someNewField: 'some-new-value',
    }),
  },
});

Now the value for password will be updated to the new value without changing the values of username or someNewField.

Finally, you can remove a field from the generateSecretString property, like someNewField:

new Secret(this, 'MySecret', {
  generateSecretString: {
    generateStringKey: 'password',
    secretStringTemplate: JSON.stringify({
      username: 'my-username',
      password: 'some-new-password',
    }),
  },

The value will be removed from the secret without affecting the other fields.

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

mbonig.secret-0.0.4.tar.gz (859.8 kB view details)

Uploaded Source

Built Distribution

mbonig.secret-0.0.4-py3-none-any.whl (860.7 kB view details)

Uploaded Python 3

File details

Details for the file mbonig.secret-0.0.4.tar.gz.

File metadata

  • Download URL: mbonig.secret-0.0.4.tar.gz
  • Upload date:
  • Size: 859.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for mbonig.secret-0.0.4.tar.gz
Algorithm Hash digest
SHA256 6c4bb665ee583a5492d2460c6ad652a2379735b33c32e18b0227297ba3b5afec
MD5 89164569ac591caccf899d12578a37ef
BLAKE2b-256 9f54bb9c73696cc7a9d9ffd33f08c7dab539d21698e7a0584c4e3fe8ee74aef5

See more details on using hashes here.

File details

Details for the file mbonig.secret-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for mbonig.secret-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 42469538cf28bfed07a51d41ec9aa4ed4d8dc7736259cb77a99d56eeb78b4a5b
MD5 e03c17f3fe8a91da92edb5868a3e3284
BLAKE2b-256 3f6d3557b275c9cd664bd9ca82201620ba6fd3f51bbe1791a98987fb5de26ad0

See more details on using hashes here.

Supported by

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