RSSAmplifier

Blog

crunchcrunch

crunchcrunch

crunchcrunch.meRSS feed ↗20 posts

Latest posts

Deploying AWS Bedrock AgentCore Agents with Pulumi

AWS Bedrock AgentCore lets you deploy agents as managed containerized runtimes. This guide shows how to automate this deployment using Pulumi and Docker. What You'll Deploy Docker container with your agent code Amazon ECR to store the image Bedroc...

Deploying AWS Bedrock Agents with Pulumi

Introduction This guide shows how to deploy AWS Bedrock Agents using Pulumi and TypeScript. Prerequisites AWS Account with Bedrock access Node.js and npm installed Pulumi CLI installed Project Setup Generate Project with Pulumi pulumi new aws-t...

Remote access to your Raspberry Pi

That’s it—I’ve finally decided to start my homelab: a place to experiment, break things, learn, and start all over again. I had a Raspberry Pi 4B sitting in a box, so I figured, why not jump in? Discovering What’s on the Pi I plugged it into my monit...

How to Use Docker Compose Profiles

I recently discovered Docker compose profiles and wanted to share it as it can be useful to someone else. Docker Compose profiles let you control which services run without modifying your docker-compose.yml. They’re useful for separating optional s...

How to Solve dependencyFailedException on AWS Bedrock

These days, i’m using AWS Bedrock to create Agents.And i faced this error when testing my agents many times so i decided to write down the workaround that i found. An error occurred (dependencyFailedException) when calling the InvokeAgent operation: ...

Scenarios for AWS Solutions Architect Associate Certification

Scenarios for AWS Solutions Architect Associate Certification I'm using this guide to prepare for the AWS Solutions Architect Associate certification. It covers common scenarios to help me understand which AWS services to use for different needs. By ...

Boost Amazon RDS Performance with io2 Block Express Storage

Amazon Relational Database Service (RDS) now offers io2 Block Express storage volumes, enhancing performance for production workloads. These volumes provide consistent sub-millisecond latency, 99.999% durability, and support up to 256,000 Provisioned...

RDS Blue-Green Deployment for major upgrade

Advantages of RDS Blue-Green Deployment RDS Blue-Green Deployment offers a compelling alternative to traditional approaches, providing several key advantages: Simplicity: This model simplifies the deployment process, reducing the likelihood of error...

How to restore a snapshot on AWS RDS

Amazon RDS creates a storage volume snapshot of your DB instance, backing up the entire DB instance and not just individual databases. You can create a new DB instance by restoring from a DB snapshot. You provide the name of the DB snapshot to restor...

How to use AWS DMS to perform a major version upgrade on RDS

Upgrading the major version of your Amazon RDS (Relational Database Service) instance is a crucial task to keep your database up-to-date with the latest features, security patches, and performance improvements. AWS Database Migration Service (DMS) ca...

How to setup Github Actions to use a private repository as a dependency

A few weeks ago, I encountered a challenging situation, prompting me to write this article to assist others facing a similar issue. Scenario I maintained a private repository that hosted the code for my application. Additionally, I created a separate...

How to set up DynamoDB locally

Do you know that can use the local version of Amazon DynamoDB to develop and test applications without having to access the DynamoDB web service?This local version helps you save on throughput, data storage, and data transfer fees. Moreover, it enabl...

How to deploy a serverless application using Github Actions

This article will explain how to deploy a serverless application using GitHub Actions. GitHub repository Create a new repository on GitHub, or choose an existing repository that you want to set up the action for. In the .github/workflows directory ...

Simple explanation : what is the difference between Intel , AMD & ARM processors ?

I've been working for some months on a Macbook M1, and i had to adapt in order to make some applications work on my machine, but i did not know very well the reason about that, so i decided to dig a new subject : Processors Definition What is a Proce...

A developer explanation about container images in Lambda

Definition Container image support for AWS Lambda was announced back at AWS re:Invent 2020.Okay, but what exactly is container image support ? To understand that, you need to have some context about lambda. When you create a Lambda function, you pack...

Lambda function URLs: deploy and test with CDK

In this article, we are going to discover a new feature from AWS Lambda : function URLs. Definition A function URL is a dedicated HTTP(S) endpoint for your Lambda function.The endpoints have the following format: https:// .lambda-url.<regio...

How to integrate Typeform into your React application

Introduction Recently, i was working with a React application and i wanted to integrate a form that i created on Typeform.This article is explaining how you can manage that using the React Embed Typeform library. Create a Next.js application Let's ...

[ Devops : Back to Basics ] : The Network Layer

This article is part of a serie called [ Devops : Back to Basics ] where i document what i'm learning on my journey to become a Devops Engineer from my current position as a Backend Engineer. The Network Layer On a local area network or LAN, nodes ca...

Use AWS Chatbot to run your AWS Lambda function from Slack

In this tutorial we are going to use AWS Chatbot to run a Lambda function remotely from Slack. To create the lambda and the SNS Topic to talk to the Bot, we are going to use CDK. To setup the ChatBot we'll do it on the console. The Lambda Let's creat...

Unit tests with AWS CDK

Lately, I have been using the AWS CDK a lot to set up infrastructure on AWS, and the fact that they have integrated solutions to unit test the code is really great. I will show how to use the CDK assertions (aws-cdk-lib/assertions) library to write u...