AWS-CDK

AWS CDK, or AWS Cloud Development Kit, is an open-source software development framework that allows developers to define cloud infrastructure as code and provision it through AWS CloudFormation.

AWS-CDK App Hierarchy

AWS-CDK App Hierarchy and Key Concepts

1. AWS CDK App Definition: AWS-CDK App hierarchy is the starting point for defining cloud resources using AWS CDK. This application is a project written in one of the supported languages, such as TypeScript or Python, and uses the AWS CDK library to describe the desired AWS infrastructure. Example: Let’s...

AWS-CDK Logo

AWS-CDK Common Mistakes

The AWS Cloud Development Kit (AWS CDK) is a framework for defining cloud resources in code and provisioning them through AWS CloudFormation. While it simplifies many aspects of defining cloud resources, there are still potential pitfalls or AWS-CDK Common Mistakes that users might encounter. Here are some of the common...

How to Create an AWS-CDK EC2 Instance

And one that Defaults to IPV6 Introducing a Scalable EC2 Configuration with AWS CDK In today’s rapidly changing technology landscape, ensuring that your infrastructure is not only robust but also scalable is a must. Building a flexible environment that can grow with your needs is essential for supporting modern applications....

Procedure to create IPV6 stack in AWS-CDK using Typescript

How to Create an IPV6 VPC using AWS-CDK

The transition from IPV4 to IPV6 has brought a new era of networking capabilities, offering a larger address space and more complex features. Amazon Web Services (AWS) provides a powerful and flexible way to manage these modern networking requirements through its Virtual Private Cloud (VPC) offerings. Creating an IPV6-enabled VPC...

AWS-CDK Logo

Understanding AWS-CDK Directory Structure

I am in the process of learning AWS-CDK using Typescript. I am coming from a Terraform background so I am having re-learn and unlearn a lot of the concepts I have taken for granted when coding IaC. Its super important to understand the directory structure of your CDK App and...

AWS-CDK Logo

What is AWS CDK?

On this tech quicky, we are introducing the core concepts of AWS CDK. AWS Cloud Development Kit is an Infrastructure as Code (IaC) tool that leverages languages such as TypeScript, JavaScript, Python, and C# to define cloud infrastructure in code. The CDK stands out as a powerful tool that allows...