Blog Posts

How to Generate Terraform using Python

To generate Terraform code using Python, you can utilize the power of the language and various libraries to dynamically create and manipulate the Terraform configuration files.

Read More

Make EKS cluster private with NodeGroup access

The Theory To make an Amazon Elastic Kubernetes Service (EKS) cluster private and allow nodes to join through a node group, you need to follow a few steps.

Read More

Which is the best language to use in DevOps

In DevOps, there isn’t a single “best” language that universally applies to all situations.

Read More

How is Ansible different from Chef or Puppet

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Read More