Private AWS ECR with custom domain, credHelper and Cognito

Let’s make it all work: private AWS ECR repository + custom external domain + ECR Credentials Helper Login + control permissions to fetch your images via Cognito

July 10, 2024 · 5 min

Private AWS ECR with custom domain

How to be able to use your custom domain when accessing docker repository hosted in private AWS ECR.

July 5, 2024 · 2 min

How to configure Logz.io log shipper for Quarkus-based Lambda using logback extension

You have a Quarkus-based AWS Lambda using logback and want to send logs to logz.io? Then this is something for you!

January 6, 2023 · 3 min

How to configure Logz.io log shipper for Cloudwatch (and your Lambda) using AWS CDK

You have your Lambda on AWS. Now you want to view the logs in Cloudwatch and you probably know this is not the most pleasant thing to do. But wait, there are things like Logz.io - an ELK service that makes viewing logs a breeze. Let’s see how to connect logz.io log shipper that will push your Lambda logs from cloudwatch to their ELK stack.

January 5, 2023 · 2 min

InitiateAuth and RespondToAuthChallenge to confirm user password and authenticate in AWS Cognito using plain HTTP calls

How to configure a new user password in AWS Cognito using plain HTTP calls?

November 22, 2022 · 1 min

Rollback to previous version of a docker image in AWS ECR

How to easily revert to previously deployed docker image in case new version of your app behaves abnormally?

May 25, 2021 · 1 min

InitiateAuth to authenticate in AWS Cognito using plain HTTP calls

How to authenticate in AWS Cognito using plain HTTP calls?

April 15, 2021 · 1 min

Serverless - Using Lambda Triggered by SQS For Job Scheduling

Imagine your code waits for some external system to respond. Easy to deal with non-serverless world where you have your application running 24/7, right? But how would you solve this in a serverless where you should pay for actual job and not for waiting. In serverless ‘wait’ equals ’loosing money’. In this post I’ll describe how you can use SQS for serverless job triggering.

November 6, 2019 · 6 min

Configuring AWS Systems Manager (SSM) Variables and Using Them From CodeBuild

AWS Systems Manager (formerly SSM) allows you to define secure, encrypted variables that you can read from other processes. Here, I’ll shortly discuss how to define such encrypted varible and read it from AWS CodeBuild.

June 18, 2019 · 2 min

Excluding Resources When Preparing Package for Serverless Application

With Serverless Framework application it’s not enough to add proper gitignore statements. You also need to take care of properly defining what should go and what should not go into your package or you can easily end with 100 MB packages.

June 16, 2019 · 2 min