forked from serverless/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.json
1347 lines (1347 loc) · 60 KB
/
plugins.json
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "serverless-export-outputs",
"description": "A Serverless plugin for exporting AWS stack outputs to a file",
"githubUrl": "https://github.com/honarpour/serverless-export-outputs"
},
{
"name": "serverless-plugin-utils",
"description": "A collection of serverless framework utilities",
"githubUrl": "https://github.com/icarus-sullivan/serverless-plugin-utils"
},
{
"name": "serverless-layers",
"description": "How to reduce drastically lambda size",
"githubUrl": "https://github.com/agutoli/serverless-layers"
},
{
"name": "mfa-serverless-plugin",
"description": "A simple plugin for deployment accounts with MFA",
"githubUrl": "https://github.com/alikian/mfa-serverless-plugin"
},
{
"name": "serverless-ini-env",
"description": "Nice Serverless plugin to setup environment variables with ini file",
"githubUrl": "https://github.com/agutoli/serverless-ini-env"
},
{
"name": "serverless-websockets-plugin",
"description": "Websocket support for Serverless Framework on AWS",
"githubUrl": "https://github.com/serverless/serverless-websockets-plugin"
},
{
"name": "@serverless/enterprise-plugin",
"description": "The Serverless Enterprise Plugin",
"githubUrl": "https://github.com/serverless/enterprise-plugin"
},
{
"name": "serverless-resource-policy",
"description": "Creates a whitelist of IP or CIDR addresses using serverless resource policies",
"githubUrl": "https://github.com/HubSpotWebTeam/serverless-resource-policy"
},
{
"name": "serverless-plugin-vault-v2",
"description": "Simplify integration between serverless and vault to storage environments variables",
"githubUrl": "https://github.com/eliasjcjunior/serverless-plugin-vault-v2"
},
{
"name": "serverless-openapi-plugin",
"description": "Serverless plugin to generate serverless API architecture from OpenAPI definition.",
"githubUrl": "https://github.com/jaumard/serverless-openapi-plugin"
},
{
"name": "serverless-dotenv-plugin",
"description": "Preload environment variables from `.env` into serverless.",
"githubUrl": "https://github.com/infrontlabs/serverless-dotenv-plugin"
},
{
"name": "serverless-local-proxy",
"description": "A highly composable plugin for Serverless that speeds up your local development workflow.",
"githubUrl": "https://github.com/serverless-local-proxy/serverless-local-proxy"
},
{
"name": "serverless-discovery-plugin",
"description": "A serverless plugin to register AWS micro-service endpoints with a discovery service at serverless deploy or serverless remove time.",
"githubUrl": "https://github.com/aregier/serverless-discovery-plugin"
},
{
"name": "fullstack-serverless",
"description": "A Serverless plugin to create an AWS CloudFront distribution that serves static web content from S3 and routes API traffic to API Gateway.",
"githubUrl": "https://github.com/MadSkills-io/fullstack-serverless"
},
{
"name": "serverless-finch",
"description": "A Serverless plugin to deploy static website assets to AWS S3.",
"githubUrl": "https://github.com/fernando-mc/serverless-finch"
},
{
"name": "serverless-appsync-plugin",
"description": "Serverless Plugin to deploy AppSync GraphQL API",
"githubUrl": "https://github.com/sid88in/serverless-appsync-plugin"
},
{
"name": "serverless-appsync-offline",
"description": "Serverless Plugin to run AWS AppSync GraphQL API localy with dynamoDB and lambda resolvers",
"githubUrl": "https://github.com/aheissenberger/serverless-appsync-offline"
},
{
"name": "aws-amplify-serverless-plugin",
"description": "Generate client-side configuration files for the AWS Amplify library based on your deployed Serverless backend",
"githubUrl": "https://github.com/awslabs/aws-amplify-serverless-plugin"
},
{
"name": "serverless-cloudformation-parameter-setter",
"description": "Set CloudFormation parameters when deploying.",
"githubUrl": "https://github.com/trek10inc/serverless-cloudformation-parameter-setter"
},
{
"name": "serverless-alexa-skills",
"description": "Manage your Alexa Skills with Serverless Framework.",
"githubUrl": "https://github.com/marcy-terui/serverless-alexa-skills"
},
{
"name": "serverless-plugin-chrome",
"description": "Plugin which bundles and ensures that Headless Chrome/Chromium is running when your AWS Lambda function handler is invoked.",
"githubUrl": "https://github.com/adieuadieu/serverless-chrome/tree/master/packages/serverless-plugin"
},
{
"name": "serverless-ssm-fetch",
"description": "Sets \"AWS Systems Manager Parameter Store (SSM)\" parameters into functions' environment variables.",
"githubUrl": "https://github.com/gozup/serverless-ssm-fetch"
},
{
"name": "serverless-custom-packaging-plugin",
"description": "Plugin to package your sourcecode using a custom target path inside the zip.",
"githubUrl": "https://github.com/hypoport/serverless-custom-packaging-plugin"
},
{
"name": "serverless-apigw-binary",
"description": "Plugin to enable binary support in AWS API Gateway.",
"githubUrl": "https://github.com/maciejtreder/serverless-apigw-binary"
},
{
"name": "serverless-certificate-creator",
"description": "This serverless plugin creates certificates that you need for your custom domains in API Gateway.",
"githubUrl": "https://github.com/schwamster/serverless-certificate-creator"
},
{
"name": "serverless-log-filter-subscription",
"description": "This serverless plugin creates log filter subscription for all lambda functions configured in your projects serverless.yml",
"githubUrl": "https://github.com/schwamster/serverless-log-filter-subscription"
},
{
"name": "serverless-domain-manager",
"description": "Serverless plugin for managing custom domains with API Gateways.",
"githubUrl": "https://github.com/amplify-education/serverless-domain-manager"
},
{
"name": "serverless-log-forwarding",
"description": "Serverless plugin for forwarding CloudWatch logs to another Lambda function.",
"githubUrl": "https://github.com/amplify-education/serverless-log-forwarding"
},
{
"name": "serverless-event-body-option",
"description": "Serverless plugin that provides the extra CLI option for the invoke command to support passing the HTTP body data.",
"githubUrl": "https://github.com/jubel-han/serverless-event-body-option"
},
{
"name": "serverless-plugin-external-sns-events",
"description": "Add ability for functions to use existing or external SNS topics as an event source",
"githubUrl": "https://github.com/silvermine/serverless-plugin-external-sns-events"
},
{
"name": "serverless-plugin-write-env-vars",
"description": "Write environment variables out to a file that is compatible with dotenv",
"githubUrl": "https://github.com/silvermine/serverless-plugin-write-env-vars"
},
{
"name": "serverless-alexa-plugin",
"description": "Serverless plugin to support Alexa Lambda events",
"githubUrl": "https://github.com/rajington/serverless-alexa-plugin"
},
{
"name": "serverless-build-plugin",
"description": "A Node.js focused build plugin for serverless.",
"githubUrl": "https://github.com/nfour/serverless-build-plugin"
},
{
"name": "serverless-resources-env",
"description": "After Deploy, this plugin fetches cloudformation resource identifiers and sets them on AWS lambdas, and creates local .<state>-env file",
"githubUrl": "https://github.com/rurri/serverless-resources-env"
},
{
"name": "serverless-event-constant-inputs",
"description": "Allows you to add constant inputs to events in Serverless 1.0. For more info see [constant values in Cloudwatch](https://aws.amazon.com/blogs/compute/simply-serverless-use-constant-values-in-cloudwatch-event-triggered-lambda-functions/)",
"githubUrl": "https://github.com/dittto/serverless-event-constant-inputs"
},
{
"name": "serverless-kms-secrets",
"description": "Allows to easily encrypt and decrypt secrets using KMS from the serverless CLI",
"githubUrl": "https://github.com/SC5/serverless-kms-secrets"
},
{
"name": "serverless-plugin-stack-outputs",
"description": "Displays stack outputs for your serverless stacks when `sls info` is ran",
"githubUrl": "https://github.com/svdgraaf/serverless-plugin-stack-outputs"
},
{
"name": "serverless-plugin-stage-variables",
"description": "Add stage variables for Serverless 1.x to ApiGateway, so you can use variables in your Lambda's",
"githubUrl": "https://github.com/svdgraaf/serverless-plugin-stage-variables"
},
{
"name": "serverless-plugin-cloudwatch-sumologic",
"description": "Plugin which auto-subscribes a log delivery lambda function to lambda log groups created by serverless",
"githubUrl": "https://github.com/ACloudGuru/serverless-plugin-cloudwatch-sumologic"
},
{
"name": "serverless-plugin-aws-alerts",
"description": "A Serverless plugin to easily add CloudWatch alarms to functions",
"githubUrl": "https://github.com/ACloudGuru/serverless-plugin-aws-alerts"
},
{
"name": "serverless-plugin-package-dotenv-file",
"description": "A Serverless plugin to copy a .env file into the serverless package",
"githubUrl": "https://github.com/ACloudGuru/serverless-plugin-package-dotenv-file"
},
{
"name": "serverless-command-line-event-args",
"description": "This module is Serverless Framework plugin. Event JSON passes to your Lambda function in commandline.",
"githubUrl": "https://github.com/horike37/serverless-command-line-event-args"
},
{
"name": "serverless-dynamodb-client",
"description": "This Serverless 0.5.x plugin help you to call AWS Dynamodb SDK without switching between different dynamodb instances, whether you work with Dynamodb local or online in AWS.",
"githubUrl": "https://github.com/99xt/serverless-dynamodb-client"
},
{
"name": "serverless-dynamodb-local",
"description": "Serverless Dynamodb Local Plugin - Allows to run dynamodb locally for serverless",
"githubUrl": "https://github.com/99xt/serverless-dynamodb-local"
},
{
"name": "serverless-dynamodb-fixtures",
"description": "Serverless Dynamodb Fixtures - Allows to load data on DynamoDB tables",
"githubUrl": "https://github.com/chechu/serverless-dynamodb-fixtures"
},
{
"name": "serverless-offline",
"description": "Emulate AWS λ and API Gateway locally when developing your Serverless project",
"githubUrl": "https://github.com/dherault/serverless-offline"
},
{
"name": "serverless-offline-ssm",
"description": "Read SSM parameters from a .env file instead of AWS",
"githubUrl": "https://github.com/janders223/serverless-offline-ssm"
},
{
"name": "serverless-offline-direct-lambda",
"description": "Allow offline direct lambda-to-lambda interactions by exposing lambdas with no API Gateway event via HTTP.",
"githubUrl": "https://github.com/civicteam/serverless-offline-direct-lambda"
},
{
"name": "serverless-plugin-simulate",
"description": "Simulate AWS Lambda and API Gateway locally using Docker",
"githubUrl": "https://github.com/gertjvr/serverless-plugin-simulate"
},
{
"name": "serverless-plugin-optimize",
"description": "Bundle with Browserify, transpile with Babel to ES5 and minify with Uglify your Serverless functions.",
"githubUrl": "https://github.com/FidelLimited/serverless-plugin-optimize"
},
{
"name": "serverless-plugin-select",
"description": "Select which functions are to be deployed based on region and stage.",
"githubUrl": "https://github.com/FidelLimited/serverless-plugin-select"
},
{
"name": "serverless-plugin-warmup",
"description": "Keep your lambdas warm during Winter.",
"githubUrl": "https://github.com/FidelLimited/serverless-plugin-warmup"
},
{
"name": "serverless-plugin-browserify",
"description": "Speed up your node based lambda's",
"githubUrl": "https://github.com/doapp-ryanp/serverless-plugin-browserify"
},
{
"name": "serverless-plugin-diff",
"description": "Compares your local AWS CloudFormation templates against deployed ones.",
"githubUrl": "https://github.com/nicka/serverless-plugin-diff"
},
{
"name": "serverless-run-function-plugin",
"description": "Run serverless function locally",
"githubUrl": "https://github.com/lithin/serverless-run-function-plugin"
},
{
"name": "serverless-scriptable-plugin",
"description": "Customize Serverless behavior without writing a plugin.",
"githubUrl": "https://github.com/weixu365/serverless-scriptable-plugin"
},
{
"name": "serverless-subscription-filter",
"description": "Serverless plugin to register subscription filter for Lambda logs. Register and pipe the logs of one lambda to another to process.",
"githubUrl": "https://github.com/blackevil245/serverless-subscription-filter"
},
{
"name": "serverless-webpack",
"description": "Serverless plugin to bundle your lambdas with Webpack",
"githubUrl": "https://github.com/serverless-heaven/serverless-webpack"
},
{
"name": "serverless-wsgi",
"description": "Serverless plugin to deploy WSGI applications (Flask/Django/Pyramid etc.) and bundle Python packages",
"githubUrl": "https://github.com/logandk/serverless-wsgi"
},
{
"name": "serverless-crypt",
"description": "Securing the secrets on Serverless Framework by AWS KMS encryption.",
"githubUrl": "https://github.com/marcy-terui/serverless-crypt"
},
{
"name": "serverless-plugin-multiple-responses",
"description": "Enable multiple content-types for Response template ",
"githubUrl": "https://github.com/silvermine/serverless-plugin-multiple-responses"
},
{
"name": "serverless-plugin-include-dependencies",
"description": "This is a Serverless plugin that should make your deployed functions smaller.",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-include-dependencies"
},
{
"name": "serverless-mocha-plugin",
"description": "A Serverless Plugin for the Serverless Framework which adds support for test-driven development using Mocha",
"githubUrl": "https://github.com/SC5/serverless-mocha-plugin"
},
{
"name": "serverless-modular",
"description": "Helps you deploy and manage multiple features with single root serverless file",
"githubUrl": "https://github.com/aa2kb/serverless-modular"
},
{
"name": "serverless-jest-plugin",
"description": "A Serverless Plugin for the Serverless Framework which adds support for test-driven development using Jest",
"githubUrl": "https://github.com/SC5/serverless-jest-plugin"
},
{
"name": "serverless-plugin-cfauthorizer",
"description": "This plugin allows you to define your own API Gateway Authorizers as the Serverless CloudFormation resources and apply them to HTTP endpoints.",
"githubUrl": "https://github.com/SC5/serverless-plugin-cfauthorizer"
},
{
"name": "serverless-cloudformation-changesets",
"description": "Natively deploy to CloudFormation via Change sets, instead of directly. Allowing you to queue changes, and safely require escalated roles for final deployment.",
"githubUrl": "https://github.com/trek10inc/serverless-cloudformation-changesets"
},
{
"name": "raml-serverless",
"description": "Serverless plugin to work with RAML API spec documents",
"githubUrl": "https://github.com/andrewcurioso/raml-serverless"
},
{
"name": "serverless-python-requirements",
"description": "Serverless plugin to bundle Python packages",
"githubUrl": "https://github.com/UnitedIncome/serverless-python-requirements"
},
{
"name": "serverless-multi-dotnet",
"description": "A serverless plugin to pack C# lambdas functions that are spread to multiple CS projects.",
"githubUrl": "https://github.com/tsibelman/serverless-multi-dotnet"
},
{
"name": "serverless-dotnet",
"description": "A serverless plugin to run 'dotnet' commands as part of the deploy process",
"githubUrl": "https://github.com/fruffin/serverless-dotnet"
},
{
"name": "serverless-enable-api-logs",
"description": "Enables Coudwatch logging for API Gateway events",
"githubUrl": "https://github.com/paulSambolin/serverless-enable-api-logs"
},
{
"name": "serverless-python-individually",
"description": "A serverless framework plugin to install multiple lambda functions written in python",
"githubUrl": "https://github.com/cfchou/serverless-python-individually"
},
{
"name": "serverless-plugin-subscription-filter",
"description": "A serverless plugin to register AWS CloudWatchLogs subscription filter",
"githubUrl": "https://github.com/tsub/serverless-plugin-subscription-filter"
},
{
"name": "serverless-step-functions",
"description": "AWS Step Functions with Serverless Framework.",
"githubUrl": "https://github.com/horike37/serverless-step-functions"
},
{
"name": "serverless-apigateway-service-proxy",
"description": "This Serverless Framewrok plugin supports the AWS service proxy integration feature of API Gateway.",
"githubUrl": "https://github.com/horike37/serverless-apigateway-service-proxy"
},
{
"name": "serverless-package-customizer",
"description": "This allows you to customize packaging system of the Serverless Framework from a command line.",
"githubUrl": "https://github.com/horike37/serverless-package-customizer"
},
{
"name": "serverless-package-location-customizer",
"description": "A serverless plugin to allow custom S3Bucket and S3Key path when packaging Lambda Functions and Layers.",
"githubUrl": "https://github.com/cipri-p/serverless-package-location-customizer"
},
{
"name": "serverless-plugin-scripts",
"description": "Add scripting capabilities to the Serverless Framework",
"githubUrl": "https://github.com/mvila/serverless-plugin-scripts"
},
{
"name": "serverless-plugin-bind-deployment-id",
"description": "A Serverless plugin to bind the randomly generated deployment resource to your custom resources",
"githubUrl": "https://github.com/jacob-meacham/serverless-plugin-bind-deployment-id"
},
{
"name": "serverless-plugin-git-variables",
"description": "A Serverless plugin to expose git variables (branch name, HEAD description, full commit hash) to your serverless services",
"githubUrl": "https://github.com/jacob-meacham/serverless-plugin-git-variables"
},
{
"name": "serverless-plugin-graphiql",
"description": "A Serverless plugin to run a local http server for graphiql and your graphql handler",
"githubUrl": "https://github.com/bencooling/serverless-plugin-graphiql"
},
{
"name": "serverless-coffeescript",
"description": "A Serverless plugin to compile your CoffeeScript into JavaScript at deployment",
"githubUrl": "https://github.com/duanefields/serverless-coffeescript"
},
{
"name": "serverless-plugin-lambda-dead-letter",
"description": "A Serverless plugin that can configure a lambda with a dead letter queue or topic",
"githubUrl": "https://github.com/gmetzker/serverless-plugin-lambda-dead-letter"
},
{
"name": "serverless-plugin-encode-env-var-objects",
"description": "Serverless plugin to encode any environment variable objects.",
"githubUrl": "https://github.com/yonomi/serverless-plugin-encode-env-var-objects"
},
{
"name": "serverless-dir-config-plugin",
"description": "EXPERIMENTAL - Serverless plugin to load function and resource definitions from a directory.",
"githubUrl": "https://github.com/economysizegeek/serverless-dir-config-plugin"
},
{
"name": "serverless-cljs-plugin",
"description": "Enables Clojurescript as an implementation language for Lambda handlers",
"githubUrl": "https://github.com/nervous-systems/serverless-cljs-plugin"
},
{
"name": "serverless-prune-plugin",
"description": "Deletes old versions of functions from AWS, preserving recent and aliased versions",
"githubUrl": "https://github.com/claygregory/serverless-prune-plugin"
},
{
"name": "serverless-offline-scheduler",
"description": "Runs scheduled functions offline while integrating with serverless-offline",
"githubUrl": "https://github.com/ajmath/serverless-offline-scheduler"
},
{
"name": "serverless-aws-alias",
"description": "This plugin enables use of AWS aliases on Lambda functions.",
"githubUrl": "https://github.com/serverless-heaven/serverless-aws-alias"
},
{
"name": "serverless-plugin-webpack",
"description": "A serverless plugin to automatically bundle your functions individually with webpack",
"githubUrl": "https://github.com/goldwasserexchange/serverless-plugin-webpack"
},
{
"name": "serverless-sqs-fifo",
"description": "A serverless plugin to handle creation of sqs fifo queue's in aws (stop-gap)",
"githubUrl": "https://github.com/vortarian/serverless-sqs-fifo"
},
{
"name": "serverless-sqs-alarms-plugin",
"description": "Wrapper to setup CloudWatch Alarms on SQS queue length",
"githubUrl": "https://github.com/sbstjn/serverless-sqs-alarms-plugin"
},
{
"name": "serverless-dotenv",
"description": "Fetch environment variables and write it to a .env file",
"githubUrl": "https://github.com/Jimdo/serverless-dotenv"
},
{
"name": "serverless-haskell",
"description": "Deploying Haskell applications to AWS Lambda with Serverless",
"githubUrl": "https://github.com/seek-oss/serverless-haskell"
},
{
"name": "serverless-hooks-plugin",
"description": "Run arbitrary commands on any lifecycle event in serverless",
"githubUrl": "https://github.com/uswitch/serverless-hooks-plugin"
},
{
"name": "serverless-dynalite",
"description": "Run dynalite locally (no JVM, all JS) to simulate DynamoDB. Watch serverless.yml for table config updates.",
"githubUrl": "https://github.com/sdd/serverless-dynalite"
},
{
"name": "serverless-apig-s3",
"description": "Serve static front-end content from S3 via the API Gateway and deploy client bundle to S3.",
"githubUrl": "https://github.com/sdd/serverless-apig-s3"
},
{
"name": "serverless-plugin-typescript",
"description": "Serverless plugin for zero-config Typescript support.",
"githubUrl": "https://github.com/graphcool/serverless-plugin-typescript"
},
{
"name": "serverless-parameters",
"description": "Add parameters to the generated cloudformation templates",
"githubUrl": "https://github.com/svdgraaf/serverless-parameters"
},
{
"name": "serverless-plugin-epsagon",
"description": "Distributed tracing that helps you monitor and troubleshoot your serverless applications.",
"githubUrl": "https://github.com/epsagon/serverless-plugin-epsagon"
},
{
"name": "serverless-pseudo-parameters",
"description": "Use ${AWS::AccountId} and other cloudformation pseudo parameters in your serverless.yml values",
"githubUrl": "https://github.com/svdgraaf/serverless-pseudo-parameters"
},
{
"name": "serverless-dynamodb-ttl",
"description": "Configure DynamoDB TTL in serverless.yml (until CloudFormation supports this).",
"githubUrl": "https://github.com/Jimdo/serverless-dynamodb-ttl"
},
{
"name": "serverless-api-stage",
"description": "Serverless API Stage plugin, enables stage variables and logging for AWS API Gateway.",
"githubUrl": "https://github.com/leftclickben/serverless-api-stage"
},
{
"name": "serverless-export-env",
"description": "Export environment variables into a .env file with automatic AWS CloudFormation reference resolution.",
"githubUrl": "https://github.com/arabold/serverless-export-env"
},
{
"name": "serverless-package-python-functions",
"description": "Packaging Python Lambda functions with only the dependencies/requirements they need.",
"githubUrl": "https://github.com/ubaniabalogun/serverless-package-python-functions"
},
{
"name": "serverless-plugin-iopipe",
"description": "See inside your Lambda functions with high fidelity metrics and monitoring.",
"githubUrl": "https://github.com/iopipe/serverless-plugin-iopipe"
},
{
"name": "serverless-plugin-metric",
"description": "Creates dynamically AWS metric-filter resources with custom patterns",
"githubUrl": "https://github.com/alex20465/serverless-plugin-metric"
},
{
"name": "serverless-sam",
"description": "Exports an AWS SAM template for a service created with the Serverless Framework.",
"githubUrl": "https://github.com/SAPessi/serverless-sam"
},
{
"name": "serverless-vpc-discovery",
"description": "Serverless plugin for discovering VPC / Subnet / Security Group configuration by name.",
"githubUrl": "https://github.com/amplify-education/serverless-vpc-discovery"
},
{
"name": "serverless-kubeless",
"description": "Serverless plugin for deploying functions to Kubeless.",
"githubUrl": "https://github.com/serverless/serverless-kubeless"
},
{
"name": "serverless-kubeless-offline",
"description": "Simulates Kubeless NodeJS runtimes to run/call your functions offline using the Serverless Framework.",
"githubUrl": "https://github.com/usefulio/serverless-kubeless-offline"
},
{
"name": "serverless-apigwy-binary",
"description": "Serverless plugin for configuring API Gateway to return binary responses",
"githubUrl": "https://github.com/ryanmurakami/serverless-apigwy-binary"
},
{
"name": "serverless-plugin-browserifier",
"description": "Reduce the size and speed up your Node.js based lambda's using browserify.",
"githubUrl": "https://github.com/digitalmaas/serverless-plugin-browserifier"
},
{
"name": "serverless-shell",
"description": "Drop to a runtime shell with all the environment variables set that you'd have in lambda.",
"githubUrl": "https://github.com/UnitedIncome/serverless-shell"
},
{
"name": "serverless-stack-output",
"description": "Store output from your AWS CloudFormation Stack in JSON/YAML/TOML files, or to pass it to a JavaScript function for further processing.",
"githubUrl": "https://github.com/sbstjn/serverless-stack-output"
},
{
"name": "serverless-gulp",
"description": "A thin task wrapper around @goserverless that allows you to automate build, test and deploy tasks using gulp",
"githubUrl": "https://github.com/rhythminme/serverless-gulp"
},
{
"name": "serverless-google-cloudfunctions",
"description": "This plugin enables support for Google Cloud Functions within the Serverless Framework.",
"githubUrl": "https://github.com/serverless/serverless-google-cloudfunctions"
},
{
"name": "serverless-azure-functions",
"description": "A Serverless plugin that adds Azure Functions support to the Serverless Framework.",
"githubUrl": "https://github.com/serverless/serverless-azure-functions"
},
{
"name": "serverless-sentry",
"description": "Automatic monitoring of memory usage, execution timeouts and forwarding of Lambda errors to Sentry (https://sentry.io).",
"githubUrl": "https://github.com/arabold/serverless-sentry-plugin"
},
{
"name": "serverless-env-generator",
"description": "Manage environment variables with YAML and load them with dotenv. Supports variable encryption with KMS, multiple stages and custom profiles.",
"githubUrl": "https://github.com/DieProduktMacher/serverless-env-generator"
},
{
"name": "serverless-plugin-embedded-env-in-code",
"description": "Replace environment variables with static strings before deployment. It’s for Lambda@Edge.",
"githubUrl": "https://github.com/zaru/serverless-plugin-embedded-env-in-code"
},
{
"name": "serverless-local-dev-server",
"description": "Speeds up development of Alexa Skills, Chatbots and APIs by exposing your functions as local HTTP endpoints and mapping received events.",
"githubUrl": "https://github.com/DieProduktMacher/serverless-local-dev-server"
},
{
"name": "serverless-plugin-stack-config",
"description": "A serverless plugin to manage configurations for a stack across micro-services.",
"githubUrl": "https://github.com/rawphp/serverless-plugin-stack-config"
},
{
"name": "serverless-plugin-elastic-beanstalk",
"description": "A serverless plugin to deploy applications to AWS ElasticBeanstalk.",
"githubUrl": "https://github.com/rawphp/serverless-plugin-elastic-beanstalk"
},
{
"name": "serverless-s3-local",
"description": "A serverless plugin to run a S3 clone on your local machine",
"githubUrl": "https://github.com/ar90n/serverless-s3-local"
},
{
"name": "serverless-s3-remover",
"description": "A serverless plugin to make s3 buckets empty before deleting cloudformation stack when ```sls remove```",
"githubUrl": "https://github.com/sinofseven/serverless-s3-remover"
},
{
"name": "serverless-dynamodb-autoscaling",
"description": "Configure Amazon DynamoDB's native Auto Scaling for your table capacities.",
"githubUrl": "https://github.com/sbstjn/serverless-dynamodb-autoscaling"
},
{
"name": "serverless-plugin-bespoken",
"description": "Creates a local server and a proxy so you don't have to deploy anytime you want to test your code",
"githubUrl": "https://github.com/bespoken/serverless-plugin-bespoken"
},
{
"name": "serverless-s3bucket-sync",
"description": "Sync a local folder with a S3 bucket after sls deploy",
"githubUrl": "https://github.com/sbstjn/serverless-s3bucket-sync"
},
{
"name": "serverless-s3-sync",
"description": "A plugin to sync local directories and S3 prefixes for Serverless Framework,",
"githubUrl": "https://github.com/k1LoW/serverless-s3-sync"
},
{
"name": "serverless-build-client",
"description": "Build your static website with environment variables defined in serverless.yml",
"githubUrl": "https://github.com/tgfischer/serverless-build-client"
},
{
"name": "serverless-nested-stack",
"description": "A plugin to Workaround for Cloudformation 200 resource limit",
"githubUrl": "https://github.com/jagdish-176/serverless-nested-stack"
},
{
"name": "serverless-plugin-common-excludes",
"description": "Adds commonly excluded files to package.excludes",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-common-excludes"
},
{
"name": "serverless-plugin-custom-domain",
"description": "Reliably sets a BasePathMapping to an API Gateway Custom Domain",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-custom-domain"
},
{
"name": "serverless-plugin-split-stacks",
"description": "Migrate certain resources to nested stacks",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-split-stacks"
},
{
"name": "serverless-plugin-log-subscription",
"description": "Adds a CloudWatch LogSubscription for functions",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-log-subscription"
},
{
"name": "serverless-cf-vars",
"description": "Enables use of AWS pseudo functions and Fn::Sub string substitution",
"githubUrl": "https://gitlab.com/kabo/serverless-cf-vars"
},
{
"name": "serverless-apigateway-plugin",
"description": "Configure the AWS api gateway: Binary support, Headers and Body template mappings",
"githubUrl": "https://github.com/GFG/serverless-apigateway-plugin"
},
{
"name": "serverless-plugin-deploy-environment",
"description": "Plugin to manage deployment environment across stages",
"githubUrl": "https://github.com/DopplerLabs/serverless-plugin-deploy-environment"
},
{
"name": "serverless-plugin-aws-resolvers",
"description": "Resolves variables from ESS, RDS, or Kinesis for serverless services",
"githubUrl": "https://github.com/DopplerLabs/serverless-plugin-aws-resolvers"
},
{
"name": "serverless-plugin-offline-kinesis-events",
"description": "Plugin that works with serverless-offline to allow offline testing of serverless functions that are triggered by Kinesis events.",
"githubUrl": "https://github.com/DopplerLabs/serverless-plugin-offline-kinesis-events"
},
{
"name": "serverless-micro",
"description": "Plugin to help manage multiple micro services under one main service.",
"githubUrl": "https://github.com/barstoolsports/serverless-micro"
},
{
"name": "serverless-api-cloudfront",
"description": "Plugin that adds CloudFront distribution in front of your API Gateway for custom domain, CDN caching and access log.",
"githubUrl": "https://github.com/Droplr/serverless-api-cloudfront"
},
{
"name": "serverless-offline-sns",
"description": "Serverless plugin to run a local SNS server and call serverless SNS handlers with events notifications.",
"githubUrl": "https://github.com/mj1618/serverless-offline-sns"
},
{
"name": "serverless-stage-manager",
"description": "Super simple Serverless plugin for validating stage names before deployment",
"githubUrl": "https://github.com/jeremydaly/serverless-stage-manager"
},
{
"name": "serverless-spa",
"description": "Serverless plugin to deploy your website to AWS S3 using Webpack to bundle it.",
"githubUrl": "https://github.com/gilmarsquinelato/serverless-spa"
},
{
"name": "serverless-aws-nested-stacks",
"description": "Yet another AWS nested stack plugin!",
"githubUrl": "https://github.com/concon121/serverless-plugin-nested-stacks"
},
{
"name": "serverless-aws-resource-names",
"description": "Serverless plugin to alter the default naming conventions for sls resources via a simple mapping file.",
"githubUrl": "https://github.com/concon121/serverless-plugin-aws-resource-names"
},
{
"name": "serverless-attach-managed-policy",
"description": "A Serverless plugin to automatically attach an AWS Managed IAM Policy (or Policies) to all IAM Roles created by the Service.",
"githubUrl": "https://github.com/Nordstrom/serverless-attach-managed-policy"
},
{
"name": "serverless-plugin-reducer",
"description": "Reduce Node.js lambda package so it contains only lambda dependencies",
"githubUrl": "https://github.com/medikoo/serverless-plugin-reducer"
},
{
"name": "serverless-plugin-transpiler",
"description": "Transpile lambda files during packaging step",
"githubUrl": "https://github.com/medikoo/serverless-plugin-transpiler"
},
{
"name": "serverless-plugin-dynamodb-autoscaling",
"description": "Auto generate auto scaling configuration for configured DynamoDB tables",
"githubUrl": "https://github.com/medikoo/serverless-plugin-dynamodb-autoscaling"
},
{
"name": "serverless-plugin-vpc-eni-cleanup",
"description": "Automatic cleanup of VPC network interfaces on stage removal",
"githubUrl": "https://github.com/medikoo/serverless-plugin-vpc-eni-cleanup"
},
{
"name": "serverless-plugin-tracer",
"description": "Trace serverless hooks as they execute",
"githubUrl": "https://github.com/enykeev/serverless-plugin-tracer/"
},
{
"name": "serverless-plugin-stackstorm",
"description": "Reusable Functions from StackStorm Exchange",
"githubUrl": "https://github.com/StackStorm/serverless-plugin-stackstorm"
},
{
"name": "serverless-iot-local",
"description": "AWS Iot events with serverless-offline",
"githubUrl": "https://github.com/tradle/serverless-iot-local"
},
{
"name": "serverless-sns-filter",
"description": "Serverless plugin to add SNS Subscription Filters to events",
"githubUrl": "https://github.com/MechanicalRock/serverless-sns-filter"
},
{
"name": "serverless-reqvalidator-plugin",
"description": "Serverless plugin to add request validator to API Gateway methods",
"githubUrl": "https://github.com/RafPe/serverless-reqvalidator-plugin"
},
{
"name": "serverless-ephemeral",
"description": "Build and include custom stateless libraries for any language",
"githubUrl": "https://github.com/Accenture/serverless-ephemeral"
},
{
"name": "serverless-content-encoding",
"description": "Enable Content Encoding in AWS API Gateway during deployment",
"githubUrl": "https://github.com/dong-dohai/serverless-content-encoding"
},
{
"name": "serverless-s3-encryption",
"description": "Set or remove the encryption settings on your s3 buckets",
"githubUrl": "https://github.com/tradle/serverless-s3-encryption"
},
{
"name": "serverless-plugin-inject-dependencies",
"description": "Painlessly deploy serverless projects with only the required dependencies.",
"githubUrl": "https://github.com/loanmarket/serverless-plugin-inject-dependencies"
},
{
"name": "serverless-plugin-provider-groups",
"description": "A plugin to allow management of grouped settings within large serverless projects.",
"githubUrl": "https://github.com/loanmarket/serverless-plugin-provider-groups"
},
{
"name": "serverless-cloudformation-resource-counter",
"description": "A plugin to count the resources generated in the AWS CloudFormation stack after deployment.",
"githubUrl": "https://github.com/drexler/serverless-cloudformation-resource-counter"
},
{
"name": "serverless-iam-roles-per-function",
"description": "Serverless Plugin for easily defining IAM roles per function via the use of iamRoleStatements at the function level.",
"githubUrl": "https://github.com/functionalone/serverless-iam-roles-per-function"
},
{
"name": "serverless-functions-base-path",
"description": "Easily define a base path where your serverless functions are located.",
"githubUrl": "https://github.com/kevinrambaud/serverless-functions-base-path"
},
{
"name": "serverless-static",
"description": "Easily serve files from a folder while developing on localhost with the serverless-offline plugin",
"githubUrl": "https://github.com/iliasbhal/serverless-static"
},
{
"name": "serverless-plugin-node-shim",
"description": "Serverless plugin to run your functions in nodejs version (8 LTS, 9+) on aws lambda",
"githubUrl": "https://github.com/jzimmek/serverless-plugin-node-shim"
},
{
"name": "serverless-local-environment",
"description": "Serverless plugin to set local environment variables and remote environment variable to different values",
"githubUrl": "https://github.com/piercus/serverless-local-environment"
},
{
"name": "serverless-cloudformation-sub-variables",
"description": "Serverless framework plugin for easily supporting AWS CloudFormation Sub function variables",
"githubUrl": "https://github.com/santiagocardenas/serverless-cloudformation-sub-variables"
},
{
"name": "serverless-sthree-env",
"description": "Serverless plugin to get config from a json formatted file in S3 and copy them to environment variable",
"githubUrl": "https://github.com/StyleTributeIT/serverless-sthree-env"
},
{
"name": "serverless-plugin-canary-deployments",
"description": "A Serverless plugin to implement canary deployments of Lambda functions",
"githubUrl": "https://github.com/davidgf/serverless-plugin-canary-deployments"
},
{
"name": "serverless-go-build",
"description": "Build go source files (or public functions) using yml definition file",
"githubUrl": "https://github.com/sean9keenan/serverless-go-build"
},
{
"name": "serverless-local-schedule",
"description": "Schedule AWS CloudWatch Event based invocations in local time(with DST support!)",
"githubUrl": "https://github.com/UnitedIncome/serverless-local-schedule"
},
{
"name": "go-serverless",
"description": "GoFormation for Serverless. Create serverless configs with Go Structs.",
"githubUrl": "https://github.com/thepauleh/goserverless"
},
{
"name": "serverless-tag-sqs",
"description": "Serverless plugin to tag SQS - Simple Queue Service",
"githubUrl": "https://github.com/gfragoso/serverless-tag-sqs"
},
{
"name": "serverless-express",
"description": "Making express app development compatible with serverless framework.",
"githubUrl": "https://github.com/mikestaub/serverless-express"
},
{
"name": "serverless-aliyun-function-compute",
"description": "Serverless Alibaba Cloud Function Compute Plugin",
"githubUrl": "https://github.com/aliyun/serverless-aliyun-function-compute"
},
{
"name": "serverless-apib-validator",
"description": "Validate that an API Blueprint has full coverage over a Serverless config",
"githubUrl": "https://github.com/onlicar/serverless-apib-validator"
},
{
"name": "serverless-package-common",
"description": "Deploy microservice Python Serverless services with common code",
"githubUrl": "https://github.com/onlicar/serverless-package-common"
},
{
"name": "serverless-tag-api-gateway",
"description": "Serverless plugin to tag API Gateway",
"githubUrl": "https://github.com/gfragoso/serverless-tag-api-gateway"
},
{
"name": "serverless-tag-cloud-watch-logs",
"description": "Serverless plugin to tag CloudWatchLogs",
"githubUrl": "https://github.com/gfragoso/serverless-tag-cloud-watch-logs"
},
{
"name": "serverless-create-global-dynamodb-table",
"description": "Serverless plugin to create dynamodb global tables",
"githubUrl": "https://github.com/rrahul963/serverless-create-global-dynamodb-table"
},
{
"name": "serverless-ding",
"description": "Serverless plugin to audibly alert user after deployment",
"githubUrl": "https://github.com/sidgonuts/serverless-ding"
},
{
"name": "serverless-ignore",
"description": "Serverless plugin to ignore files (.slsignore)",
"githubUrl": "https://github.com/nya1/serverless-ignore"
},
{
"name": "serverless-add-api-key",
"description": "Serverless plugin to add same api key for multiple serverless services i.e. to re-use apikey across multiple api gateway apis.",
"githubUrl": "https://github.com/rrahul963/serverless-add-api-key"
},
{
"name": "serverless-puresec-cli",
"description": "Serverless Plugin for magically creating IAM roles that are least privileged per function.",
"githubUrl": "https://github.com/puresec/serverless-puresec-cli"
},
{
"name": "serverless-dependson-plugin",
"description": "Serverless plugin that automatically generates DependsOn references for AWS Lambdas to prevent AWS RequestLimitExceeded errors.",
"githubUrl": "https://github.com/bwinant/serverless-dependson-plugin"
},
{
"name": "serverless-plugin-colocate",
"description": "Serverless Plugin to keep your configuration next to your code.",
"githubUrl": "https://github.com/aronim/serverless-plugin-colocate"
},
{
"name": "serverless-plugin-fastdeploy",
"description": "Serverless Plugin to perform fast deployments for large service packages.",
"githubUrl": "https://github.com/aronim/serverless-plugin-fastdeploy"
},
{
"name": "serverless-plugin-parent",
"description": "Serverless Plugin that allows you to keep common configuration in a parent serverless.yml",
"githubUrl": "https://github.com/aronim/serverless-plugin-parent"
},
{
"name": "serverless-plugin-registry",
"description": "Serverless plugin to register function names with AWS SSM Parameter Store.",
"githubUrl": "https://github.com/aronim/serverless-plugin-registry"
},
{
"name": "serverless-plugin-offline-dynamodb-stream",
"description": "Serverless Plugin for emulating dynamodb stream triggering lambda functions offline",
"githubUrl": "https://github.com/orchestrated-io/serverless-plugin-offline-dynamodb-stream"
},
{
"name": "serverless-basic-authentication",
"description": "Serverless Plugin for adding Basic Authentication to your api",
"githubUrl": "https://github.com/svdgraaf/serverless-basic-authentication"
},
{
"name": "serverless-rust",
"description": "Deploy Rustlang applications to AWS Lambda",
"githubUrl": "https://github.com/softprops/serverless-rust"
},
{
"name": "serverless-oncall",
"description": "Easily manage oncall for your serverless services",
"githubUrl": "https://github.com/softprops/serverless-oncall"
},
{
"name": "serverless-cognito-add-custom-attributes",
"description": "Serverless Plugin for adding custom attributes to an existing CloudFormation-managed CognitoUserPool and CognitoUserPoolClient without losing all your users",
"githubUrl": "https://github.com/GetWala/serverless-cognito-add-custom-attributes"
},
{
"name": "serverless-plugin-ifelse",
"description": "A Serverless Plugin to write If Else conditions in serverless YAML file",
"githubUrl": "https://github.com/anantab/serverless-plugin-ifelse"
},
{
"name": "serverless-print-dots",
"description": "A Serverless plugin for printing dots in Serverless log during deployment to indicate progress and prevent timeouts in CI/CD platforms.",
"githubUrl": "https://github.com/amirklick/serverless-print-dots"