aws_security_viz 0.1.2.pre.alpha.pre.60 → 0.1.2.pre.alpha.pre.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/README.md +18 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YWVjODk0ODliMmQ2MzE2ZWMxY2EwMmQ2OWZhODdiOWE0OTMxZGRhMA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YjI5YWMxNzcwOWNiMjJiOTM0ZDMwOWJlYzViMjk0Y2I4MmE3OTA2Nw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzcxYTlmMTIzODM5OGVhMmZkYWExMTczNzVhMjk2OTg0MDg4NjZiYjlkZWQy
|
|
10
|
+
ZTMwZDkwOTI1YTcxMDA5OGE4NzE1MWFlYWE1ZmRhMjY5ODY2MjE0MTUzNzU0
|
|
11
|
+
NzU5NWIxMWRmM2I5OTJhODA3NjY0YmJjYTQ3OTkzNWViZjc0NWQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MmZjMDdkNTc4MGQ3NTBhYzhhOWJmM2NiNjcyNWY4NDIxY2JiY2E0NjFmZDcy
|
|
14
|
+
MzNhNzllYzM4YTJhYjEwMDRjODRkYjk5YzBhMDEyNjMyN2FhNjcyNjc1ZGE4
|
|
15
|
+
ZDI3N2Q4NGI1MjMwZWU1MGFmM2UxMDkyN2EyNGZmNmUwZDRjZWM=
|
data/README.md
CHANGED
|
@@ -38,6 +38,18 @@ To generate the graph using an existing security_groups.json (created using aws-
|
|
|
38
38
|
$ aws_security_viz -o data/security_groups.json -f viz.svg --color
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
To generate a web view
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
$ aws_security_viz -a your_aws_key -s your_aws_secret_key -f aws.json
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
* Generates two files: aws.json and view.html.
|
|
48
|
+
* The json file name needs to be passed in as a html fragment identifier.
|
|
49
|
+
* The generated graph can be viewed in a webserver e.g. http://localhost:3000/view.html?aws.json by using `python -m SimpleHTTPServer 3000`
|
|
50
|
+
|
|
51
|
+
### Help
|
|
52
|
+
|
|
41
53
|
```
|
|
42
54
|
$ aws_security_viz --help
|
|
43
55
|
Options:
|
|
@@ -84,7 +96,12 @@ Execute the following command to generate the json. You will need [aws-cli](http
|
|
|
84
96
|
|
|
85
97
|
`aws ec2 describe-security-groups`
|
|
86
98
|
|
|
87
|
-
##
|
|
99
|
+
## EXAMPLES
|
|
100
|
+
|
|
101
|
+
#### Graphviz export
|
|
88
102
|
|
|
89
103
|

|
|
90
104
|
|
|
105
|
+
#### Web view
|
|
106
|
+

|
|
107
|
+
|