Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sops-secretsmanager-cdk

Package Overview
Dependencies
Maintainers
8
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sops-secretsmanager-cdk

Safely load secrets from sops into secretsmanager using the CDK

  • 3.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
474
increased by30.58%
Maintainers
8
Weekly downloads
 
Created
Source

sops-secretsmanager-cdk

npm version

Safely load secrets from sops into secretsmanager using the CDK

Usage

import { SopsSecretsManager } from 'sops-secretsmanager-cdk';
...
const ssm = new SopsSecretsManager(this, 'StoreSecrets', {
    path: './path/to/secretsfile.yaml',
    kmsKey: myKey,  // or use kms.Key.fromKeyArn, or omit and use the key in the sops file
    secretName: 'TestSecret',  // or secret: mySecret
    mappings: {
        nameInSecretsManager: {
            path: ['path', 'to', 'value', 'in', 'secretsfile'],
            // optionally pass encoding: 'json' to pass a portion of the secrets file
        },
        anotherThingInSecretsManager: {
            path: ['other', 'path'],
        },
        // etc
    },
});

if(ssm.secret) {
    // secret is a Secret you can tag, for example
}

Properties for SopsSecretsManager

  • secret and secretName - must set exactly one of these
    • if secret, must be secretsManager.Secret | secretsManager.ISecret
      • this secret will be populated with the data from the sops file
    • if secretName, must be a string
      • a secret with this name will be created
  • asset and path - must set exactly one of these
    • if asset, must be a s3Assets.Asset
      • this asset should contain the encrypted sops file
    • if path, must be a string
      • should point to the encrypted sops file on disk
  • kmsKey - optional
    • must be a kms.IKey
    • the sops file contains a reference to the KMS key, so probably not actually needed
  • mappings, wholeFile and singleValueMapping - must set mappings or singleValueMapping or set wholeFile to true
    • if mappings, must be a SopsSecretsManagerMappings
      • which determines how the values from the sops file are mapped to keys in the secret (see below)
    • if singleValueMapping, must be a SopsSecretsManagerMapping
      • which determines how a single value from the sops file is mapped to the text value of the secret
    • if wholeFile is true
      • then rather than treating the sops data as structured and mapping keys over, the whole file will be decrypted and stored as the body of the secret
  • fileType - optional
    • must be 'yaml' or 'json' if set
    • tells sops how to decode the file
    • will default getting the extension from the filename
    • unless wholeFile is true, then defaults to 'json'

Mappings

The mappings property, if given, specifies how to make values from the structured sops data (json or yaml) to keys in secrets manager.

It takes an object, where:

  • the keys are strings determining the target name in Secrets Manager
  • the values are objects with keys:
    • path, required, an array of strings, pointing to a value in the structured sops data
    • encoding, optional, 'string' or 'json', control how to alter the value found from sops for storage in Secrets Manager

CDK v1 and v2

CDK v2:

import { SopsSecretsManager } from 'sops-secretsmanager-cdk';
// or
import { SopsSecretsManager } from 'sops-secretsmanager-cdk/cdkv2';

CDK v1:

import { SopsSecretsManager } from 'sops-secretsmanager-cdk/cdkv1';

Implementation

Using the CDK's custom resource mini-framework, the sops secrets file is uploaded to S3 as an asset as is, still encoded. The custom resource Lambda then decodes the secrets (in memory, never on disk) and puts them into the SecretsManager secret.

Integration testing

Run the following to deploy a test stack named SopsExampleStack. Note that if a stack with this name exists, it will be deleted:

$ npm run deploy-example

This compiles and uses the code from your working directory, finds an existing customer-managed KMS key, deploys a stack that uses an sample secret, and verifies that the created secret contains the expected data.

Releasing a new version

  • (Almost certainly) be on latest main, with no unpublished changes
  • Run npm version (patch|minor|major) as appropriate
  • Run git push and git push origin TAG where TAG is the tag that npm version just created

The tag triggers a Github Actions job to publish to npm.

Keywords

FAQs

Package last updated on 14 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc