Create an AWS lambda function in Go

2019-02-16 | 6 min read

In this article we will create a lambda function and an API Gateway route like we did with the serverless framework but only using AWS tools, we will be using the same generated...

Creating a lambda function with terraform

2019-04-27 | 7 min read

Here we will see how to use terraform to manage lambda functions, it will be a simple hello world in node.js, available as gist...

Go continuous delivery with Terraform and Kubernetes

2019-05-05 | 14 min read

In this article we will continue where we left off the last time: Go continuous integration with Travis CI and Docker...

Getting started with terraform modules

2019-06-24 | 11 min read

In this article we will see a subtle introduction to terraform modules, how to pass data into the module, get something from the module and create a resource (GKE cluster)...

Brief introduction to terratest

2019-09-08 | 6 min read

In this article we will see the basics to have tests for your terraform code using a re-usable pattern, we will use the code from the last article...

Automatic terraform linting with reviewdog and tflint

2020-05-21 | 2 min read

In this article we will test how to lint and get automatic checks in our github pull requests for our terraform code using reviewdog...