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

serverless-ssm-publish

Package Overview
Dependencies
Maintainers
4
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-ssm-publish

Serverless Framework plugin to publish data to AWS SSM Parameter Store

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.7K
decreased by-3.68%
Maintainers
4
Weekly downloads
 
Created
Source

:zap: serverless-ssm-publish

serverless npm version npm downloads MIT licensed Coverage Status Build Status semantic-release

Publish custom data to AWS SSM Parameter Store from serverless.yaml.

Install

  • Install with your choice of npm/yarn
npm install serverless-ssm-publish --save-dev
yarn add serverless-ssm-publish --save-dev
  • Add the plugin to your plugins section in the serverless.yaml
plugins:
  - serverless-ssm-publish

Usage

During deployment

Add any params you want published to SSM to your serverless.yaml custom section. Ssm publish compares existing values and will only write if no value exists/ the value has changed.

custom:
  secretToken: ${opt:secretToken}

  ssmPublish:
    enabled: true                             # Needs to be set to true
    params:
      - path: /global/tokens/secretToken
        value: ${self:custom.secretToken}
        description: Super Secret Token       # description is optional
        secure: true                          # defaults to true
      - path: /service/config/storageBucket
        value: !Ref StorageBucket
        secure: false

From the CLI

You can also call the plugin directly in order to update SSM params without running deployment/packaging.

sls ssmPublish

Changelog

Version History

*0.1.0

  • Initial release

Keywords

FAQs

Package last updated on 30 Mar 2020

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