1.0.0 • Published 4 years ago

aws-nodejs-client v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

aws-nodejs-client

AWS Systems Manager is a collection of capabilities that helps you automate management tasks such as collecting system inventory, applying operating system (OS) patches, automating the creation of Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale. Systems Manager lets you remotely and securely manage the configuration of your managed instances. A managed instance is any Amazon EC2 instance or on-premises machine in your hybrid environment that has been configured for Systems Manager. (https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/SSM.html)

Tools used:

  • Javascript -> programming language
  • Mocha -> testing framework

Prerequisite:

  • Nodejs
  • Python and AWS CLI

How to run tests from command line: npm test

Example of unit test:

it('Should get AWS parameter by name - dev env', async function() {
  var param = await paramStore.getParameterByName('/devs/api-jva-claims/api-key');
  console.log('param is: ' + param);
});