0.0.1 • Published 4 years ago

azure-inventory v0.0.1

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

azure-inventory

Azure Infrastructure Inventory

This module provides an abstraction layer to inventory your cloud resources.

Supported services (and APIs):

Supported Regions us-west-1

Installation

npm install azure-inventory

Usage

import AzureInventory from 'azure-inventory'

const config = {
  credentials: {
    accessKeyId: 'your_access_key',
    secretAccessKey: 'your_secret_key'
  },
  services: ['ec2', 'rds'],
  regions: ['us-west-2, us-east-1']
};

const oInventory = new AzureInventory(config);
const oResources = oInventory.inventory();