How to Create CloudFormation with Multiple Files
June 25, 2023
To create a CloudFormation (CFN) stack with multiple files, you can follow these general steps:
Read More
Make EKS cluster private with NodeGroup access
June 21, 2023
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
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
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
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 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 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 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
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