Skip to main content

13 posts tagged with "AWS"

Amazon Web Services (AWS)

View All Tags

How to get additional $100 for newly created AWS account

· 10 min read
Ivan Barlog
AWS Solutions Architect @ BeeSolve

I haven't set up a new AWS account via Create Account button for ages. Currently I am setting up new AWS accounts via code with @beesolve/aws-accounts. I want the tool to be usable for users with existing AWS Organizations and also users who are trying to onboard to AWS. That's why I needed to create new Organization myself so I could understand how the tool can help the newcomers.

Config-driven AWS account management with TypeScript

· 7 min read
Ivan Barlog
AWS Solutions Architect @ BeeSolve

Managing the AWS Organization shouldn't require you to fight CloudFormation or click through Control Tower. It should be code. That's the reason I've built a tool which lets you do exactly that. The tool is called @beesolve/aws-accounts and it is publicly available. If you manage multiple accounts and you are not satisfied with existing solutions this article might be for you.

Lambda Bun runtime rewrite

· 8 min read
Ivan Barlog
AWS Solutions Architect @ BeeSolve

When I created @beesolve/lambda-bun-runtime I mostly did it because it seems that the Lambda is very low on the Bun priority list and I wanted to have something which is up to date where I can fix the bugs quickly. I also wanted to provide better DX and tooling built around the CDK.

After using it for a while I realized that the approach of the official Bun's custom layer for Lambda does not align with my mindset.

Publishing CDK construct to Constructs Hub

· 17 min read
Ivan Barlog
AWS Solutions Architect @ BeeSolve

Two weeks ago I've published Lambda Bun Runtime and Lambda Keep Active CDK constructs which you can download and install from npm. I've also written about those in their respective articles.

Since there is strong community build around Constructs Hub I wanted my constructs to be available there as well. Unfortunatelly for me you need to use projen in order to be picked up by Construct Hub. So I have converted my repositories to projen repositories. This article is about my thorny path.