Skip to main content

@matthewbonig/secret

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.

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.0.tar.gz (857.5 kB view hashes)

Uploaded Source

Built Distribution

mbonig.secret-0.0.0-py3-none-any.whl (857.8 kB view hashes)

Uploaded Python 3

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