aws_security_viz 0.2.1.pre.alpha.pre.362 → 0.2.1.pre.alpha.pre.365

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -0
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4310a3c1e1ec252c7a1cd0faeb95f5981024e553beb3431a340ea566f382f42
4
- data.tar.gz: cc1ebc90a80247a50a5f4c25c35960731a557593e9cfd42167bd115ec0b91f68
3
+ metadata.gz: 50e07fde1409b0a0e251bd31c1c95d428aceb3afa3c28842ebd275b5b3b48252
4
+ data.tar.gz: 07c00b6db66b1d991dd577ec146f18f8e510c33749d143ce60a1d4f06f5122c6
5
5
  SHA512:
6
- metadata.gz: d83d3ed86b2f2182015464a9c958a53d2efc54125af621f653a91340cde25c2a044ac6171cacb5d565f048e3f90aa8b5a24ad91e3b0dbcc9aa17d688fc0702c3
7
- data.tar.gz: cbc60d0cf32ed6ecfa645ea355524b371c14f9b984847f000221a0702fefa7ea5d98a6daabab09e3a28935ce3711a76690aafbfdb2ffec35928692fd8b58edf0
6
+ metadata.gz: 15e7328735cf69f76fea6689bab871cce9aae773875b75c5e52af02e68cc003c21319caf1a0e75edf0b57bb3473df49911d50f04536ad8ae03654642b1a61cfe
7
+ data.tar.gz: 412520dc68a421b65c29340c7b5e7c63678d28ec8f18e020f1b79be161db48a6c13da7c343789ea017341f0dd93642c3e086903dda01f492b06f9affc94a2626
data/README.md CHANGED
@@ -81,6 +81,27 @@ Options:
81
81
  -h, --help Show this message
82
82
  ```
83
83
 
84
+ #### Configuration
85
+
86
+ aws-security-viz only uses the `ec2:DescribeSecurityGroups` api so a minimal IAM policy which grants only `ec2:DescribeSecurityGroups` access should be enough.
87
+
88
+ ```json
89
+ {
90
+ "Version": "2012-10-17",
91
+ "Statement": [
92
+ {
93
+ "Effect": "Allow",
94
+ "Action": "ec2:DescribeSecurityGroups",
95
+ "Resource": "*"
96
+ }
97
+ ]
98
+ }
99
+ ```
100
+
101
+ Alternatively you can use [aws-vault](https://github.com/99designs/aws-vault/) and run it using short lived temporary credentials.
102
+
103
+ `$ aws-vault exec <profile> -- aws_security_viz -f aws.json --renderer navigator`
104
+
84
105
  #### Advanced configuration
85
106
 
86
107
  You can generate a configuration file using the following command:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws_security_viz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1.pre.alpha.pre.362
4
+ version: 0.2.1.pre.alpha.pre.365
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anay Nayak
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-17 00:00:00.000000000 Z
11
+ date: 2020-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler