0.1.1 • Published 6 years ago

aws-parameter-store v0.1.1

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

aws-parameter-store

Wrapper around AWS Parameter Store SDK Methods for use with App Configuration

Usage

This will take all vars in /production/shared and /production/api and combine them into a single json object

import ParameterStore from '../src/ParameterStore';

ParameterStore.setRegion('us-east-1');
ParameterStore.mergePathsAsObject([
    '/production/shared',
    '/production/api'
], (oError, oResults) => console.log(JSON.stringify(oResults, null, '    ')));