-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcorkscrew.yaml.example
More file actions
142 lines (125 loc) · 2.74 KB
/
corkscrew.yaml.example
File metadata and controls
142 lines (125 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Corkscrew Configuration Example
# This file demonstrates all available configuration options
version: "1.0"
providers:
aws:
# Service discovery mode: manual, auto, hybrid
# - manual: Only use explicitly included services
# - auto: Auto-discover from go.mod and AWS SDK
# - hybrid: Combine manual list with auto-discovered services
discovery_mode: hybrid
# Manually specified services
services:
include:
# Core services (current hardcoded list)
- ec2
- s3
- iam
- lambda
- rds
- dynamodb
- sqs
- sns
- ecs
- eks
- cloudformation
- cloudwatch
- route53
- elasticloadbalancing
- autoscaling
- kms
- secretsmanager
- ssm
# Additional commonly used services
- athena
- glue
- kinesis
- elasticache
- apigateway
- cloudtrail
- eventbridge
- stepfunctions
- sagemaker
- cloudfront
# Services to exclude (useful in auto/hybrid mode)
exclude: []
# - chatbot # Rarely used
# - gamelift # Gaming specific
# Service groups for convenience
service_groups:
core:
- ec2
- s3
- iam
- vpc
compute:
- lambda
- ecs
- eks
- batch
- lightsail
data:
- rds
- dynamodb
- elasticache
- redshift
- athena
- glue
networking:
- vpc
- route53
- cloudfront
- elasticloadbalancing
- apigateway
security:
- iam
- kms
- secretsmanager
- guardduty
- shield
monitoring:
- cloudwatch
- cloudtrail
- xray
- cloudwatchlogs
# Analysis configuration
analysis:
# Skip services with no resources
skip_empty: true
# Parallel analysis workers
workers: 4
# Cache analysis results
cache_enabled: true
cache_ttl: 24h
# Example configuration for other providers
# Uncomment and modify as needed
# azure:
# discovery_mode: manual
# services:
# include:
# - compute
# - storage
# - networking
# - identity
# analysis:
# skip_empty: true
# workers: 4
# gcp:
# discovery_mode: auto
# services:
# exclude:
# - gameservices
# analysis:
# skip_empty: true
# workers: 4
# kubernetes:
# discovery_mode: manual
# services:
# include:
# - core
# - apps
# - batch
# - networking
# analysis:
# skip_empty: false
# workers: 2