Skip to content

Commit

Permalink
Merge pull request #717 from 0xdabbad00/fix_issues
Browse files Browse the repository at this point in the history
Fix issues
  • Loading branch information
0xdabbad00 committed Jun 19, 2020
2 parents 32ee173 + d524cea commit b3908b1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
CloudMapper
========
[![Build Status](https://travis-ci.org/duo-labs/cloudmapper.svg?branch=master)](https://travis-ci.org/duo-labs/cloudmapper)

CloudMapper helps you analyze your Amazon Web Services (AWS) environments. The original purpose was to generate network diagrams and display them in your browser. It now contains much more functionality, including auditing for security issues.

- [Network mapping demo](https://duo-labs.github.io/cloudmapper/)
Expand Down
2 changes: 1 addition & 1 deletion cloudmapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import pkgutil
import importlib

__version__ = "2.8.3"
__version__ = "2.9.0"


def show_help(commands):
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ Jinja2==2.10.1
jmespath==0.9.5
lazy-object-proxy==1.4.3
MarkupSafe==1.1.1
matplotlib==3.2.1
matplotlib==3.2.2
mccabe==0.6.1
mock==4.0.2
netaddr==0.7.19
nose==1.3.7
pandas==1.0.4
parliament==0.4.14
pandas==1.0.3
policyuniverse==1.1.0.1
Expand Down
2 changes: 1 addition & 1 deletion stats_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
query: .Buckets|length
source: s3-list-buckets
- name: EC2 instances
query: '[.Reservations[].Instances[]|select(.State.Name == "running")]|length'
query: '[.Reservations[]?.Instances[]?|select(.State.Name == "running")]|length'
source: ec2-describe-instances
- name: ELBs
query: .LoadBalancerDescriptions|length
Expand Down

0 comments on commit b3908b1

Please sign in to comment.