Blog Posts

How is Ansible different from Chef or Puppet

June 19, 2023

Ansible, Chef, and Puppet are all popular configuration management and automation tools, but they differ in their approach and architecture.


Read More

Teach me the basics of Ansible

June 18, 2023

Ansible is an open-source automation tool that allows you to manage and configure computer systems.


Read More

How do you create an EKS cluster using CloudFormation

June 17, 2023

The steps to achieve this To create an Amazon Elastic Kubernetes Service (EKS) cluster using CloudFormation, you can follow these steps:


Read More

How to connect an API Gateway to Inline Lambda in Terraform

June 16, 2023

To connect an API Gateway to an inline Lambda function using Terraform, you can follow these steps:


Read More

API Gateway to Inline Lambda in CloudFormation

June 15, 2023

To connect an API Gateway to an inline Lambda function using CloudFormation, you can follow these steps:


Read More

How to connect an API Gateway to Lambda in CloudFormation

June 14, 2023

To connect an API Gateway to a Lambda function using CloudFormation, you can follow these steps:


Read More

Create DynamoDB Table & Add Items using Python 3 from Lambda

June 13, 2023

To create a DynamoDB table and add items to it using Python 3 from AWS Lambda, you can use the AWS SDK for Python, also known as Boto3.


Read More

How to create a Site-to-Site VPN in Boto3 Python

June 12, 2023

To create a site-to-site VPN using the Boto3 library in Python, you can utilize the boto3.


Read More

How to create a Site-to-Site VPN in Terraform

June 11, 2023

To create a site-to-site VPN using Terraform, you can use the aws_vpn_gateway and aws_vpn_connection resources from the AWS provider.


Read More

How to create a Site-to-Site VPN in CloudFormation

June 10, 2023

To create a site-to-site VPN (Virtual Private Network) using AWS CloudFormation, you can use the AWS::EC2::VPNGateway and AWS::EC2::VPNConnection resources.


Read More

How to AWS sts assume role in one command - without jq

June 9, 2023

The issue - what it takes to assume a role To assume an AWS role in the CLI, you will have to do something like this:


Read More

How to create a Lambda in CloudFormation

June 7, 2023

You can create a Lambda in CloudFormation as follows: Option 1 - Inline code Resources: MyLambdaFunction: Type: AWS::Lambda::Function Properties: FunctionName: MyLambdaFunction Runtime: python3.


Read More

How to create a Lambda in Terraform

June 7, 2023

To create an AWS Lambda function using Terraform, you need to define the necessary resources in a Terraform configuration file.


Read More

How to create a Bastion server in Terraform

June 6, 2023

To create a Bastion server using Terraform, you need to define the necessary resources in a Terraform configuration file.


Read More

How to create a Bastion server in CloudFormation

June 5, 2023

To create a Bastion server using AWS CloudFormation, you need to define the necessary resources in a CloudFormation template.


Read More

How to you create a Cross Account Role in Terraform

June 4, 2023

To create a cross-account role in Terraform, you need to perform the following steps:


Read More

How to you create a Cross Account Role in CloudFormation

June 3, 2023

To create a cross-account role in CloudFormation, you can follow these steps:


Read More

How to create Public and Private Subnets in CloudFormation

June 2, 2023

To create public and private subnets in AWS CloudFormation, you can use the AWS CloudFormation Template Language (CFT) to define your network configuration.


Read More

How to create Public and Private Subnets in Terraform

June 1, 2023

To create public and private subnets in Terraform, you can use the AWS provider to define your network configuration.


Read More

Create Internet Gateway & Assign to EC2 in CloudFormation

May 31, 2023

To create an Internet Gateway and associate it with an EC2 instance using AWS CloudFormation, you can follow these steps:


Read More