forked from localstack/localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.py
More file actions
214 lines (176 loc) 路 7.24 KB
/
Copy pathplugins.py
File metadata and controls
214 lines (176 loc) 路 7.24 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import os
import sys
from localstack import config
from localstack.constants import TRUE_STRINGS
from localstack.services.swf import swf_starter, swf_listener
from localstack.utils.bootstrap import ENV_SCRIPT_STARTING_DOCKER
def register_localstack_plugins():
# skip loading plugins for Docker launching, to increase startup speed
if os.environ.get(ENV_SCRIPT_STARTING_DOCKER) not in TRUE_STRINGS:
do_register_localstack_plugins()
docker_flags = []
# add Docker flags for edge ports
for port in [config.EDGE_PORT, config.EDGE_PORT_HTTP]:
if port:
docker_flags += ['-p {p}:{p}'.format(p=port)]
result = {
'docker': {
'run_flags': ' '.join(docker_flags)
}
}
return result
def do_register_localstack_plugins():
# register default plugins
try:
from localstack.services import edge
from localstack.services.plugins import Plugin, register_plugin
from localstack.services.infra import (
start_sns, start_lambda, start_sts, start_ssm,
start_firehose, start_dynamodbstreams, start_cloudformation
)
from localstack.services.acm import acm_starter
from localstack.services.apigateway import apigateway_listener, apigateway_starter
from localstack.services.cloudformation import cloudformation_starter, cloudformation_listener
from localstack.services.cloudwatch import cloudwatch_listener, cloudwatch_starter
from localstack.services.dynamodb import dynamodb_listener, dynamodb_starter
from localstack.services.ec2 import ec2_starter, ec2_listener
from localstack.services.es import es_starter
from localstack.services.events import events_listener, events_starter
from localstack.services.iam import iam_listener, iam_starter
from localstack.services.kinesis import kinesis_listener, kinesis_starter
from localstack.services.kms import kms_starter
from localstack.services.logs import logs_listener, logs_starter
from localstack.services.redshift import redshift_starter
from localstack.services.route53 import route53_listener, route53_starter
from localstack.services.s3 import s3_listener, s3_starter
from localstack.services.secretsmanager import secretsmanager_listener, secretsmanager_starter
from localstack.services.ses import ses_starter, ses_listener
from localstack.services.sns import sns_listener
from localstack.services.sqs import sqs_listener, sqs_starter
from localstack.services.ssm import ssm_listener
from localstack.services.stepfunctions import stepfunctions_starter, stepfunctions_listener
from localstack.services.sts import sts_starter, sts_listener
register_plugin(Plugin(
'edge',
start=edge.start_edge,
active=True))
register_plugin(Plugin(
'acm',
start=acm_starter.start_acm))
register_plugin(Plugin(
'apigateway',
start=apigateway_starter.start_apigateway,
listener=apigateway_listener.UPDATE_APIGATEWAY))
if config.USE_MOTO_CF:
# TODO: deprecated - remove in a future iteration
register_plugin(Plugin(
'cloudformation',
start=cloudformation_starter.start_cloudformation,
listener=cloudformation_listener.UPDATE_CLOUDFORMATION
))
else:
register_plugin(Plugin(
'cloudformation',
start=start_cloudformation
))
register_plugin(Plugin(
'cloudwatch',
start=cloudwatch_starter.start_cloudwatch,
listener=cloudwatch_listener.UPDATE_CLOUD_WATCH))
register_plugin(Plugin(
'dynamodb',
start=dynamodb_starter.start_dynamodb,
check=dynamodb_starter.check_dynamodb,
listener=dynamodb_listener.UPDATE_DYNAMODB))
register_plugin(Plugin(
'dynamodbstreams',
start=start_dynamodbstreams))
register_plugin(Plugin(
'ec2',
start=ec2_starter.start_ec2,
listener=ec2_listener.UPDATE_EC2))
register_plugin(Plugin(
'es',
start=es_starter.start_elasticsearch_service))
register_plugin(Plugin(
'firehose',
start=start_firehose))
register_plugin(Plugin(
'iam',
start=iam_starter.start_iam,
listener=iam_listener.UPDATE_IAM))
register_plugin(Plugin(
'sts',
start=sts_starter.start_sts,
listener=sts_listener.UPDATE_STS))
register_plugin(Plugin(
'kinesis',
start=kinesis_starter.start_kinesis,
check=kinesis_starter.check_kinesis,
listener=kinesis_listener.UPDATE_KINESIS))
register_plugin(Plugin(
'kms',
start=kms_starter.start_kms,
priority=10))
register_plugin(Plugin(
'lambda',
start=start_lambda))
register_plugin(Plugin(
'logs',
start=logs_starter.start_cloudwatch_logs,
listener=logs_listener.UPDATE_LOGS))
register_plugin(Plugin(
'redshift',
start=redshift_starter.start_redshift))
register_plugin(Plugin(
'route53',
start=route53_starter.start_route53,
listener=route53_listener.UPDATE_ROUTE53))
register_plugin(Plugin(
's3',
start=s3_starter.start_s3,
check=s3_starter.check_s3,
listener=s3_listener.UPDATE_S3))
register_plugin(Plugin(
'secretsmanager',
start=secretsmanager_starter.start_secretsmanager,
check=secretsmanager_starter.check_secretsmanager,
listener=secretsmanager_listener.UPDATE_SECRETSMANAGER))
register_plugin(Plugin(
'ses',
start=ses_starter.start_ses,
listener=ses_listener.UPDATE_SES))
register_plugin(Plugin(
'sns',
start=start_sns,
listener=sns_listener.UPDATE_SNS))
register_plugin(Plugin(
'sqs',
start=sqs_starter.start_sqs,
listener=sqs_listener.UPDATE_SQS,
check=sqs_starter.check_sqs))
register_plugin(Plugin(
'ssm',
start=start_ssm,
listener=ssm_listener.UPDATE_SSM))
register_plugin(Plugin(
'sts',
start=start_sts))
register_plugin(Plugin(
'events',
start=events_starter.start_events,
listener=events_listener.UPDATE_EVENTS))
register_plugin(Plugin(
'stepfunctions',
start=stepfunctions_starter.start_stepfunctions,
listener=stepfunctions_listener.UPDATE_STEPFUNCTIONS))
register_plugin(Plugin(
'swf',
start=swf_starter.start_swf,
check=swf_starter.check_swf,
listener=swf_listener.UPDATE_SWF))
except Exception as e:
if not os.environ.get(ENV_SCRIPT_STARTING_DOCKER):
print('Unable to register plugins: %s' % e)
sys.stdout.flush()
raise e