aws_recon 0.2.18 → 0.2.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws_recon/collectors/applicationautoscaling.rb +25 -0
- data/lib/aws_recon/collectors/dynamodb.rb +13 -0
- data/lib/aws_recon/collectors/ec2.rb +15 -0
- data/lib/aws_recon/collectors/iam.rb +5 -5
- data/lib/aws_recon/collectors/organizations.rb +1 -1
- data/lib/aws_recon/collectors/s3.rb +1 -1
- data/lib/aws_recon/collectors/sns.rb +2 -2
- data/lib/aws_recon/collectors/sqs.rb +1 -1
- data/lib/aws_recon/services.yaml +2 -0
- data/lib/aws_recon/version.rb +1 -1
- data/readme.md +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aceb7412370bc6945f910f6579dcc9f7a188070fd35f7ec3325300d544f01d12
|
4
|
+
data.tar.gz: f35b334bead563849a2a1bce8623076c7d23237c21eb85409b7371d93ebc9f9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f31da81396ac07fee4d331a05cbe5706fde48bc9c0617a5bc5640c61e68b56f499b4be8b659d6cdf61335665c898f638f20380968df68ad536c5114966d25bd
|
7
|
+
data.tar.gz: 958d528054caefa1c8d3e9b7d2a005f52ddaeaa0b89d566e5a3fddcfb81300e497a40e3fab039656fa2dc091d89d15535d76b863f4ded6c133118aea2fc59df9
|
@@ -0,0 +1,25 @@
|
|
1
|
+
class ApplicationAutoScaling < Mapper
|
2
|
+
#
|
3
|
+
# Returns an array of resources.
|
4
|
+
#
|
5
|
+
def collect
|
6
|
+
resources = []
|
7
|
+
|
8
|
+
#
|
9
|
+
# DynamoDB auto-scaling policies
|
10
|
+
#
|
11
|
+
@client.describe_scaling_policies({ service_namespace: 'dynamodb' }).each_with_index do |response, page|
|
12
|
+
log(response.context.operation_name, page)
|
13
|
+
|
14
|
+
response.scaling_policies.each do |policy|
|
15
|
+
struct = OpenStruct.new(policy.to_h)
|
16
|
+
struct.type = 'auto_scaling_policy'
|
17
|
+
struct.arn = policy.policy_arn
|
18
|
+
|
19
|
+
resources.push(struct.to_h)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
resources
|
24
|
+
end
|
25
|
+
end
|
@@ -5,6 +5,19 @@ class DynamoDB < Mapper
|
|
5
5
|
def collect
|
6
6
|
resources = []
|
7
7
|
|
8
|
+
#
|
9
|
+
# describe_limits
|
10
|
+
#
|
11
|
+
@client.describe_limits.each_with_index do |response, page|
|
12
|
+
log(response.context.operation_name, page)
|
13
|
+
|
14
|
+
struct = OpenStruct.new(response)
|
15
|
+
struct.type = 'limits'
|
16
|
+
struct.arn = "arn:aws:dynamodb:#{@region}:#{@account}:limits"
|
17
|
+
|
18
|
+
resources.push(struct.to_h)
|
19
|
+
end
|
20
|
+
|
8
21
|
#
|
9
22
|
# list_tables
|
10
23
|
#
|
@@ -130,6 +130,21 @@ class EC2 < Mapper
|
|
130
130
|
end
|
131
131
|
end
|
132
132
|
|
133
|
+
#
|
134
|
+
# describe_network_acls
|
135
|
+
#
|
136
|
+
@client.describe_network_acls.each_with_index do |response, page|
|
137
|
+
log(response.context.operation_name, page)
|
138
|
+
|
139
|
+
response.network_acls.each do |network_acl|
|
140
|
+
struct = OpenStruct.new(network_acl.to_h)
|
141
|
+
struct.type = 'network_acl'
|
142
|
+
struct.arn = network_acl.network_acl_id # no true ARN
|
143
|
+
|
144
|
+
resources.push(struct.to_h)
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
133
148
|
#
|
134
149
|
# describe_subnets
|
135
150
|
#
|
@@ -26,7 +26,7 @@ class IAM < Mapper
|
|
26
26
|
user.user_policy_list.map do |p|
|
27
27
|
{
|
28
28
|
policy_name: p.policy_name,
|
29
|
-
policy_document:
|
29
|
+
policy_document: p.policy_document.parse_policy
|
30
30
|
}
|
31
31
|
end
|
32
32
|
end
|
@@ -42,7 +42,7 @@ class IAM < Mapper
|
|
42
42
|
group.group_policy_list.map do |p|
|
43
43
|
{
|
44
44
|
policy_name: p.policy_name,
|
45
|
-
policy_document:
|
45
|
+
policy_document: p.policy_document.parse_policy
|
46
46
|
}
|
47
47
|
end
|
48
48
|
end
|
@@ -54,12 +54,12 @@ class IAM < Mapper
|
|
54
54
|
response.role_detail_list.each do |role|
|
55
55
|
struct = OpenStruct.new(role.to_h)
|
56
56
|
struct.type = 'role'
|
57
|
-
struct.assume_role_policy_document =
|
57
|
+
struct.assume_role_policy_document = role.assume_role_policy_document.parse_policy
|
58
58
|
struct.role_policy_list = if role.role_policy_list
|
59
59
|
role.role_policy_list.map do |p|
|
60
60
|
{
|
61
61
|
policy_name: p.policy_name,
|
62
|
-
policy_document:
|
62
|
+
policy_document: p.policy_document.parse_policy
|
63
63
|
}
|
64
64
|
end
|
65
65
|
end
|
@@ -75,7 +75,7 @@ class IAM < Mapper
|
|
75
75
|
policy.policy_version_list.map do |p|
|
76
76
|
{
|
77
77
|
version_id: p.version_id,
|
78
|
-
document:
|
78
|
+
document: p.document.parse_policy,
|
79
79
|
is_default_version: p.is_default_version,
|
80
80
|
create_date: p.create_date
|
81
81
|
}
|
@@ -40,7 +40,7 @@ class Organizations < Mapper
|
|
40
40
|
response.policies.each do |policy|
|
41
41
|
struct = OpenStruct.new(policy.to_h)
|
42
42
|
struct.type = 'service_control_policy'
|
43
|
-
struct.content =
|
43
|
+
struct.content = @client.describe_policy({ policy_id: policy.id }).policy.content.parse_policy
|
44
44
|
|
45
45
|
resources.push(struct.to_h)
|
46
46
|
end
|
@@ -55,7 +55,7 @@ class S3 < Mapper
|
|
55
55
|
resp = client.send(op.func, { bucket: bucket.name })
|
56
56
|
|
57
57
|
struct[op.key] = if op.key == 'policy'
|
58
|
-
|
58
|
+
resp.policy.string.parse_policy
|
59
59
|
else
|
60
60
|
op.field ? resp.send(op.field).to_h : resp.to_h
|
61
61
|
end
|
@@ -18,8 +18,8 @@ class SNS < Mapper
|
|
18
18
|
struct = OpenStruct.new(@client.get_topic_attributes({ topic_arn: topic.topic_arn }).attributes.to_h)
|
19
19
|
struct.type = 'topic'
|
20
20
|
struct.arn = topic.topic_arn
|
21
|
-
struct.policy =
|
22
|
-
struct.effective_delivery_policy =
|
21
|
+
struct.policy = struct.delete_field('Policy').parse_policy
|
22
|
+
struct.effective_delivery_policy = struct.delete_field('EffectiveDeliveryPolicy').parse_policy
|
23
23
|
struct.subscriptions = []
|
24
24
|
|
25
25
|
# list_subscriptions_by_topic
|
@@ -18,7 +18,7 @@ class SQS < Mapper
|
|
18
18
|
struct = OpenStruct.new(@client.get_queue_attributes({ queue_url: queue, attribute_names: ['All'] }).attributes.to_h)
|
19
19
|
struct.type = 'queue'
|
20
20
|
struct.arn = struct.QueueArn
|
21
|
-
struct.policy =
|
21
|
+
struct.policy = struct.delete_field('Policy').parse_policy
|
22
22
|
|
23
23
|
resources.push(struct.to_h)
|
24
24
|
end
|
data/lib/aws_recon/services.yaml
CHANGED
data/lib/aws_recon/version.rb
CHANGED
data/readme.md
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws_recon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Larsen
|
@@ -184,6 +184,7 @@ files:
|
|
184
184
|
- lib/aws_recon/collectors/acm.rb
|
185
185
|
- lib/aws_recon/collectors/apigateway.rb
|
186
186
|
- lib/aws_recon/collectors/apigatewayv2.rb
|
187
|
+
- lib/aws_recon/collectors/applicationautoscaling.rb
|
187
188
|
- lib/aws_recon/collectors/athena.rb
|
188
189
|
- lib/aws_recon/collectors/autoscaling.rb
|
189
190
|
- lib/aws_recon/collectors/cloudformation.rb
|