Streamlining Infrastructure as Code Testing: Harnessing Terratest, Terraform, and AWS Go SDKs for Automation
When cloud infrastructure is created using IaC with Terraform, how can you know it’s working as intended? I can recall many times when I deployed services with Terraform only to find out it didn’t work as intended. I would then sometimes spend hours p...
Setting Up the Optimal gRPC Development Environment Using Connect-go and VSCode Dev Container
Hello there! This is Ueda from the Backend Team at MonstarLab. Recently, in a project I was involved in, the topic of using gRPC came up. So, I went through various trials and errors to quickly set up the optimal development environment. In this article, ...
JWT auth in Go
Authentication is the most fundamental building block of any application. Whenever we start building a new app, we consider how users authenticate in the very beginning. In the olden days, we used to implement session based authentication and transmitted ...