Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

History

History
History
86 lines (83 loc) 路 3.77 KB

File metadata and controls

86 lines (83 loc) 路 3.77 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import sys
from localstack.services.es import es_starter
from localstack.services.s3 import s3_listener, s3_starter
from localstack.services.sns import sns_listener
from localstack.services.sqs import sqs_listener, sqs_starter
from localstack.services.iam import iam_listener
from localstack.services.infra import (register_plugin, Plugin,
start_sns, start_ses, start_apigateway, start_elasticsearch_service, start_events, start_lambda,
start_redshift, start_firehose, start_cloudwatch, start_dynamodbstreams, start_route53,
start_ssm, start_sts, start_secretsmanager, start_iam, start_cloudwatch_logs, start_ec2)
from localstack.services.kinesis import kinesis_listener, kinesis_starter
from localstack.services.dynamodb import dynamodb_listener, dynamodb_starter
from localstack.services.apigateway import apigateway_listener
from localstack.services.stepfunctions import stepfunctions_starter, stepfunctions_listener
from localstack.services.cloudformation import cloudformation_listener, cloudformation_starter
# register default plugins
def register_localstack_plugins():
try:
register_plugin(Plugin('es',
start=start_elasticsearch_service))
register_plugin(Plugin('elasticsearch',
start=es_starter.start_elasticsearch,
check=es_starter.check_elasticsearch))
register_plugin(Plugin('s3',
start=s3_starter.start_s3,
check=s3_starter.check_s3,
listener=s3_listener.UPDATE_S3))
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))
register_plugin(Plugin('ses',
start=start_ses))
register_plugin(Plugin('ssm',
start=start_ssm))
register_plugin(Plugin('sts',
start=start_sts))
register_plugin(Plugin('iam',
start=start_iam,
listener=iam_listener.UPDATE_IAM))
register_plugin(Plugin('secretsmanager',
start=start_secretsmanager))
register_plugin(Plugin('apigateway',
start=start_apigateway,
listener=apigateway_listener.UPDATE_APIGATEWAY))
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('firehose',
start=start_firehose))
register_plugin(Plugin('lambda',
start=start_lambda))
register_plugin(Plugin('kinesis',
start=kinesis_starter.start_kinesis,
check=kinesis_starter.check_kinesis,
listener=kinesis_listener.UPDATE_KINESIS))
register_plugin(Plugin('redshift',
start=start_redshift))
register_plugin(Plugin('route53',
start=start_route53))
register_plugin(Plugin('cloudformation',
start=cloudformation_starter.start_cloudformation,
listener=cloudformation_listener.UPDATE_CLOUDFORMATION))
register_plugin(Plugin('cloudwatch',
start=start_cloudwatch))
register_plugin(Plugin('events',
start=start_events))
register_plugin(Plugin('logs',
start=start_cloudwatch_logs))
register_plugin(Plugin('stepfunctions',
start=stepfunctions_starter.start_stepfunctions,
listener=stepfunctions_listener.UPDATE_STEPFUNCTIONS))
register_plugin(Plugin('ec2',
start=start_ec2))
except Exception as e:
print('Unable to register plugins: %s' % e)
sys.stdout.flush()
raise e
Morty Proxy This is a proxified and sanitized view of the page, visit original site.