Skip to content

Commit b3908b1

Browse files
authored
Merge pull request #717 from 0xdabbad00/fix_issues
Fix issues
2 parents 32ee173 + d524cea commit b3908b1

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
CloudMapper
22
========
3-
[![Build Status](https://travis-ci.org/duo-labs/cloudmapper.svg?branch=master)](https://travis-ci.org/duo-labs/cloudmapper)
4-
53
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.
64

75
- [Network mapping demo](https://duo-labs.github.io/cloudmapper/)

cloudmapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import pkgutil
3131
import importlib
3232

33-
__version__ = "2.8.3"
33+
__version__ = "2.9.0"
3434

3535

3636
def show_help(commands):

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ Jinja2==2.10.1
1313
jmespath==0.9.5
1414
lazy-object-proxy==1.4.3
1515
MarkupSafe==1.1.1
16-
matplotlib==3.2.1
16+
matplotlib==3.2.2
1717
mccabe==0.6.1
1818
mock==4.0.2
1919
netaddr==0.7.19
2020
nose==1.3.7
21+
pandas==1.0.4
2122
parliament==0.4.14
2223
pandas==1.0.3
2324
policyuniverse==1.1.0.1

stats_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
query: .Buckets|length
33
source: s3-list-buckets
44
- name: EC2 instances
5-
query: '[.Reservations[].Instances[]|select(.State.Name == "running")]|length'
5+
query: '[.Reservations[]?.Instances[]?|select(.State.Name == "running")]|length'
66
source: ec2-describe-instances
77
- name: ELBs
88
query: .LoadBalancerDescriptions|length

0 commit comments

Comments
 (0)