aws_security_viz 0.2.1.pre.alpha.pre.356 → 0.2.1.pre.alpha.pre.369

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: 25ed5610364d55013a839b906f51beba407c323a5abe2f13c2f47de37b7ada00
4
- data.tar.gz: e5f67be1fae5077ea8d7ded0d15c956fd6457b1ad8869c4d8d79ab69db2c4047
3
+ metadata.gz: 310cce1186f27d4230675f9d51269e57626e0912282447840d1865ccc0bbc079
4
+ data.tar.gz: 4eb488597840f75a866e6b028e15aa5dc9f2ace2577175f034a422ce18a3541c
5
5
  SHA512:
6
- metadata.gz: 8f1704d8f2ac8b0c0592ac0c8ad35748ff2aff2714b21e210edd22d110ba20864d91ba3b454498f22b3098faf558a93fce48558355dbdd24c8a9cd9b234cda8b
7
- data.tar.gz: f7b4db351b13fdcc6db82e04e701cac96fe81cfedcb658784aa12b2cdc57d2792521e4768f6e836596105d1445e20cc81a3731c77a2e5c47016fc82730b27d21
6
+ metadata.gz: 958c867b467bdce14c90633f099271f70e8f1f82f5f090eede192f919c2e5e4472832c81478ee7ac312c63020817684cccc469218b5e42d0433a3365320c56d9
7
+ data.tar.gz: 4249a1eace695d1dc7851ea5723d7e6bad0ad57a7e64636f66714fab9a2b0ce0e1b22f8126ffd13e25af0dba9b346fb0aa89741b388dc0cb6bfe3c317002cf08
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.356
4
+ version: 0.2.1.pre.alpha.pre.369
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-03 00:00:00.000000000 Z
11
+ date: 2020-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler