Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws-cloudformation-lookup

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-cloudformation-lookup

Lookup resources from cloudformation stack

  • 0.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

aws-cloudformation-lookup NPM module

A module for loading the resources from an AWS cloudformation stack.

The module has a function

loadStack(stackName, function(err, stackResources))

which returns all resources from the stack with the following properties:

  • LogicalResourceId : logical resource name used in cloudformation
  • PhysicalResourceId : actual resource name as installed
  • Arn : Arn to resource
  • ResourceType: type of resource

Usage

  var cloudLookup = require('aws-cloudformation-lookup');

  cloudlookup.loadStack('MyStack', function(err, stackResources) {
    var arn = stackResources['myEC2Instance'].Arn;
    ... 
  });

Release History

  • 2015/12/07 - v0.1.3 - Fixes to Arns
  • 2015/12/06 - v0.1.0 - Initial version of module

License

Copyright (c) 2015 SC5, licensed for users and contributors under MIT license. https://github.com/SC5/aws-cloudformation-lookup/blob/master/LICENSE

Bitdeli Badge

Keywords

FAQs

Package last updated on 07 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc