1.0.1 • Published 7 months ago

tstdel-get-properties-by-names v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
7 months ago

=====================================================================================================

                                  tstdel-get-properties

=====================================================================================================

Project Title: tstdel-get-properties-by-names

Project Owner: Test Delivery Team

Description: This node package is used to retrieve properties from AWS Parameter Store for the requested list of parameter names. This package assumes that you have the following configured in your lambda function environment. 1. AWS_REGION 2. SSM_PATH

This package is in the act-npm repository - https://maven.corporate.act.org/repository/act-npm

How to install: npm --registry=https://maven.corporate.act.org/repository/npm-group install --save tstdel-get-properties-by-names

How to use:

In your code:

var propUtil = require('tstdel-get-properties-by-names'); var properties = {}; var names = '/abc/xyz/efgh.wert' ; propUtil(properties, names, function(err) { if (err) { //Something went wrong with retrieving the properties } // properties object will now have the properties. });