furikake 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/furikake/resources/security_group.rb +8 -7
- data/lib/furikake/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b648e5931e282bccde549cb3436bb589895ad054629e663b00a42606c3838b1
|
4
|
+
data.tar.gz: 764ddf8c9f49c6d0f4a1b804c6ed12654e96272bb8ea62feb720f2c298764dd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1043f0f46bd7398a92df6344b593cd96259d404e55c207260311d1ac133e25612576747b511a8bff7531a63d7dc42981edc7c54b2fadd253b08f3ddb8049b8c8
|
7
|
+
data.tar.gz: 5df2ec1f5f32ed867b5414bfee9dbf8b7f08d3cd8ff364fe0821cfbdc69ecc004d4c80671c934ef54fcd7ff9be061141e99089dfeb056ef20df47192adeacc55
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Furikake [![
|
1
|
+
# Furikake [![CI](https://github.com/oreno-tools/furikake/actions/workflows/ci.yml/badge.svg)](https://github.com/oreno-tools/furikake/actions) [![Gem Version](https://badge.fury.io/rb/furikake.svg)](https://badge.fury.io/rb/furikake)
|
2
2
|
![](https://raw.githubusercontent.com/inokappa/furikake/master/docs/images/furikake.png)
|
3
3
|
|
4
4
|
## これなに
|
@@ -4,11 +4,11 @@ module Furikake
|
|
4
4
|
def report
|
5
5
|
ingresses, egresses = get_resources
|
6
6
|
headers = ['ID', 'Group Name', 'Description',
|
7
|
-
'Port', 'Protocol', 'Source' ]
|
7
|
+
'From Port', 'To Port', 'Protocol', 'Source' ]
|
8
8
|
ingress_info = MarkdownTables.make_table(headers, ingresses, is_rows: true, align: 'l')
|
9
9
|
|
10
10
|
headers = ['ID', 'Group Name', 'Description',
|
11
|
-
'Port', 'Protocol', '
|
11
|
+
'From Port', 'To Port', 'Protocol', 'Source' ]
|
12
12
|
egress_info = MarkdownTables.make_table(headers, egresses, is_rows: true, align: 'l')
|
13
13
|
|
14
14
|
documents = <<"EOS"
|
@@ -40,6 +40,7 @@ EOS
|
|
40
40
|
ingress << encode_value(sg.group_name)
|
41
41
|
ingress << encode_value(sg.description || 'N/A')
|
42
42
|
ingress << (permission.from_port || 'N/A')
|
43
|
+
ingress << (permission.to_port || 'N/A')
|
43
44
|
ingress << (permission.ip_protocol == '-1' ? 'ALL' : permission.ip_protocol)
|
44
45
|
|
45
46
|
ip_ranges = list_ip_ranges(permission.ip_ranges)
|
@@ -50,7 +51,7 @@ EOS
|
|
50
51
|
source << ip_ranges unless ip_ranges.empty?
|
51
52
|
source << list_ids unless list_ids.empty?
|
52
53
|
source << group_pairs unless group_pairs.empty?
|
53
|
-
ingress << source.join('
|
54
|
+
ingress << source.join(' <br> ')
|
54
55
|
ingresses << ingress
|
55
56
|
end
|
56
57
|
|
@@ -60,6 +61,7 @@ EOS
|
|
60
61
|
egress << encode_value(sg.group_name)
|
61
62
|
egress << encode_value(sg.description || 'N/A')
|
62
63
|
egress << (permission.from_port || 'N/A')
|
64
|
+
egress << (permission.to_port || 'N/A')
|
63
65
|
egress << (permission.ip_protocol == '-1' ? 'ALL' : permission.ip_protocol)
|
64
66
|
|
65
67
|
ip_ranges = list_ip_ranges(permission.ip_ranges)
|
@@ -70,7 +72,7 @@ EOS
|
|
70
72
|
dest << ip_ranges unless ip_ranges.empty?
|
71
73
|
dest << list_ids unless list_ids.empty?
|
72
74
|
dest << group_pairs unless group_pairs.empty?
|
73
|
-
egress << dest.join('
|
75
|
+
egress << dest.join('<br>')
|
74
76
|
egresses << egress
|
75
77
|
end
|
76
78
|
end
|
@@ -106,9 +108,8 @@ EOS
|
|
106
108
|
end
|
107
109
|
|
108
110
|
def encode_value(value)
|
109
|
-
|
110
|
-
|
111
|
-
value
|
111
|
+
return value unless value.index('_') == 0
|
112
|
+
'\\' + value
|
112
113
|
end
|
113
114
|
|
114
115
|
module_function :report, :get_resources,
|
data/lib/furikake/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: furikake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- inokappa
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|