Gordon is a tool to create, wire and deploy AWS Lambdas using CloudFormation
Documentation: https://gordon.readthedocs.io/en/latest/
- 100% CloudFormation resource creation
- 100% Boilerplate free
- 100% isolated and dead-simple multi-stage and multi region deployments
- Python/Javascript/Java/Golang/Scala... runtimes supported.
- Run Lambdas locally (Python/Javascript/Java/Golang/Scala...)
- Simple yml configuration
- Seamless integration with (
pip
,npm
,gradle
, ...) - 100% Customizable lambda build process. Use
Docker
,Makefile
or... a simpleshell
script. - Supported integrations
- APIGateway
- Scheduled CloudWatch Events (cron)
- CloudWatch Events
- Dynamodb Streams
- Kinesis Streams
- S3
- AWS Lambda Versions and Aliases
- VPC support
- Dynamic stage parametrization including:
- Environment variables
- Jinja2 values
- ARN translation helpers
- Extensive Documentation
- Good test suite
- Love ❤️
We think documentation and examples are an important pillar... so here you have a nice list of things you can play with!
- Python HelloWorld Lambda: Simple Lambda written in Python.
- Javascript HelloWorld Lambda: Simple Lambda written in Javascript.
- Javascript ES6 HelloWorld Lambda: Simple Lambda written in Javascript using ES-6.
- Java HelloWorld Lambda: Simple Lambda written in Java.
- Kotlin HelloWorld Lambda: Simple Lambda written in Kotlin.
- Scala HelloWorld Lambda: Simple Lambda written in Scala.
- Golang Runtime: Run Golang based Lambdas via shim.
- ApiGateway: Integration for creating a simple web service.
- Cron: Schedule lambdas using cron syntax.
- Dynamodb Stream Consumer: Consume as a stream changes to a dynamodb table.
- Kinesis Stream Consumer: Consume Events published in a Kinesis Stream.
- S3 Consumer: Run your lambdas when a file is created/deleted on S3.
- Contexts: Add dynamic configuration to your lambdas.
- Lambda based Custom CloudFormation Resouces: Manage CloudFormation resources using Lambdas.
- Telegram Bot: Create a simple bot in telegram.
- Slack Bot: Create a simple slash command bot for Slack.
- Twilio: Integrate your lambdas with Twilio using TwiML.
- Snowplow Analytics: Consume Snowplow Analytics events from gordon.
- Docker: Compile lambdas with native dependencies within a docker container thanks to lambci/docker-lambda
Because this project doesn't introduce anything new. Gordon is just a thin layer of sugar around AWS services and few conventions, which makes deploying and wiring Lambdas really easy.
Under the hood, gordon just generates self-contained CloudFormation templates... which is great!
Why introduce yet-another framework when you can build lambdas using AWS services and tools you already know how to use (pip
, npm
, grunt
, gulp
, gradle
, Makefile
...)
Keep it simple! 😀
Yes, we believe that there must be 100% isolation between your application stages (dev
, staging
, prod
...). That means that resources which (for example) serve a development purpose must not be related to the ones which are serving production load.
One example of this is that it is an AWS best practice to use different AWS accounts between stages. Although this is not required, it makes evident that mixing resources between stages is a bad idea.
This completely clashes with the suggested approach for services such as apigateway, where they emphasize to have several "stages" for the same apigateway resource. We disagree and completely ignore that functionality because we believe is the wrong approach.
Gordon keeps reproducibility and isolation at it's core. When you apply gordon projects in different stages or regions, you'll deploy completely isolated Cloudformation stacks which will contain an exact and isolated copy of all the resources you have defined.
One of the best advantages of using AWS is the fact that reproducibility is at it's core and their ecosystem is full of services which encourage it. Their flagship is CloudFormation.
Then... why not just use CloudFormation? Well, there are three reasons:
- Complexity: CloudFormation stacks are defined using JSON templates which are a nightmare to write and maintain. And remember... Friends don't let friends write JSON files.
- Glue: There is a lot of glue to put in between a "normal user" and the reality-check of deploying and wiring a Lambda into AWS.
- APIs: Not all AWS APIs are released when services are announced... ain't frameworks (boto3), nor integrations with CloudFormation.
This project tries to solve these three issues by:
- Creating a really thin layer of conventions on top of easy to maintain YAML files.
- Making everything work out of the box as well trying to make people not shoot themselves in the foot.
- Working around the lack of CloudFormation/Framework APIs (keeping in mind they will eventually happen).
Yes, we eat our own dog food; We use gordon to create gordon. The idea is that, (unlike many other projects) we don't think streaming API commands to AWS is a nice solution, so instead, we fill the gaps with custom CloudFormation resources.
Those Custom CloudFormation resources are implemented using Lambdas (deployed by gordon)... crazy uh?!
Why all this madness? Again... because reproducibility. If you manage some resources using CloudFormation, and some others streaming API commands, if/when you try to reproduce or decommission your environment... you are pretty much f***.
We would love to hear as much feedback as possible! If you have any comment, please drop me an email to me@jorgebastida.com