aws_security_viz 0.2.1.pre.alpha.pre.359 → 0.2.1.pre.alpha.pre.372

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: b2a3fb3770362d28f0f336748d5dc6f654001ad8e699f909ef8004b92cb56299
4
- data.tar.gz: a5558d2704a18ef9906ce7d5e3f98b5b4af6da87a1878b951b2bd4e4c3bdb585
3
+ metadata.gz: 597e3b4c91043e533f9c9ac82c45bd6afc973d7b11e8c6eb4086efc070a8b55e
4
+ data.tar.gz: 310dd2815545b3cad880aa5eda54593dfa91a0d59b39d1c3cafb3f645a52fc85
5
5
  SHA512:
6
- metadata.gz: 995275caec0b26ac90195e45b4f559848942e3cad05e40753bdda0985504b0c36e803fb69fc826f867ca50560c7d61df103033a2fd95441de90b20c11e55b9e5
7
- data.tar.gz: adeae962f4c1f84820931a2051084b0347f30a6b49bf3f44e81b8ae230547ada635b1f38026a0574371172791c9f6da15cdf61fed8d4c5323af17d7b6fcbfebe
6
+ metadata.gz: 3e29688d180d0d328e245dd2904898e6779067a09d2229bc6e5765bde08bd263ab1b8200bf184ba300fd13a2a3bd2262a237cf9d3657a9aa9a26ac348cfadd40
7
+ data.tar.gz: a90455d8f0980cb5828ffd9eb605416e75641058796666bbe325a8cd9eccde1c73d0f2341e55271b52f34e06fc514ed6331a212e7af0395144b73fd303a4f77c
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.359
4
+ version: 0.2.1.pre.alpha.pre.372
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-10 00:00:00.000000000 Z
11
+ date: 2020-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler