serverless-plugin-config

2.0.1 • Public • Published

serverless-plugin-config

Wraps the excellent npm library config and injects it into the serverless custom object.

Downloads Version License

header

Installation

npm install -D serverless-plugin-config

or

yarn add -D serverless-plugin-config

Plugin Dependency

In your projects serverless file, add serverless-plugin-config to the list of your plugins:

plugins:
  - serverless-plugin-config

Usage

You can now reference values from your config based settings with the following syntax.

${config:<value>}

Example:

provider:
  environment:
    DOMAIN: ${config:domain}

Custom Declaration

The default directory for configuration is process.cwd() + 'config'. You can set up a specific directory by following the example below.

custom:
  config:
    dir: settings/env

Commands

config debug

Displays the configuration data resolved by the config lib. In the example here, running the command will produce the following:

$ npx serverless config debug -s beta
config: {
  "domain": "api-beta.test.com"
}

Changelog

2.0.0

1.0.1

  • Fixing spelling issues and lifecycle events

1.0.0

  • Initial upload

Package Sidebar

Install

npm i serverless-plugin-config

Weekly Downloads

0

Version

2.0.1

License

MIT

Unpacked Size

6.74 kB

Total Files

6

Last publish

Collaborators

  • icarus-sullivan