0.1.0 • Published 6 years ago

serverless-plugin-embedded-env-in-code v0.1.0

Weekly downloads
69
License
MIT
Repository
github
Last release
6 years ago

ServerlessFramework Plugin

Embedded env in Code

This plugin will replace environment variables with static strings before deployment. It’s for Lambda@Edge.

Usage

serverless.yml

functions:
  foobar:
    handler: foobar.perform
    embedded:
      files:
        - foobar.js
        - foobar-lib.js
      variables:
        FooBar: somethingA
        BarBaz: somethingB

For example

const foobar = process.env.FooBar
const barbaz = `${process.env.BarBaz} <= barbaz`

replaces

const foobar = 'somethingA'
const barbaz = `somethingB <= barbaz`