CloudFormation

How to Create CloudFormation with Multiple Files

To create a CloudFormation (CFN) stack with multiple files, you can follow these general steps:

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

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

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

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 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 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 CloudFormation

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

Read More

How to create Public and Private Subnets in CloudFormation

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

Create Internet Gateway & Assign to EC2 in CloudFormation

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

Read More