MIKAEELS>_
Browsing articles tagged

#Networking

10 articles found with this tag

RDS Example Using AWS CDK

In this blog post, I will walk through provisioning an RDS database instance and connecting to it from an EC2 instance. Since both EC2 and RDS services require a Virtual Private Cloud (VPC), we'll also cover setting up a custom VPC with appropriate s...

Read more

Importing Existing VPC in AWS CDK

Managing network infrastructure efficiently is crucial for deploying scalable and secure applications on AWS. AWS Cloud Development Kit (CDK) offers a powerful way to define cloud infrastructure using familiar programming languages. This guide provid...

Read more

How to Create a VPC with AWS CDK

A Virtual Private Cloud (VPC) is a virtual network that is isolated from other AWS customers, providing a secure environment for your resources. In this guide, I'll walk you through how to create and configure a VPC using AWS Cloud Development Kit (C...

Read more

Provisioning a Lambda Function in a VPC with Internet Access Using AWS CDK

In today's cloud architectures, securing your resources within a Virtual Private Cloud (VPC) while maintaining necessary internet access is a common requirement. AWS Lambda functions, by default, do not have internet access when placed in a VPC, whic...

Read more

Using AWS CDK to Deploy an AWS Fargate Service

Introduction Amazon Web Services (AWS) offers a wide range of tools and services for developers to build, deploy, and manage their applications in the cloud. One such service is AWS Fargate, a serverless compute engine for containers that make it eas...

Read more

How to do Subnet Selection in AWS CDK

AWS CDK, or Amazon Web Services Cloud Development Kit, is a software development framework for building and deploying cloud-based applications on Amazon Web Services. The CDK provides an easy-to-use and high-level API for building cloud-based applica...

Read more

How to do Subnets Tagging in AWS CDK

Tagging subnets in AWS CDK is a great way to organize and manage your resources within your VPC. By using tags, you can easily identify and filter resources based on their purpose, environment, or any other criteria that is important to your organiza...

Read more

What is a Token in the AWS Cloud Development Kit (CDK)?

The AWS Cloud Development Kit (CDK) is a software development framework for defining cloud infrastructure in code. One important concept in the CDK is the concept of a token. In this blog post, we'll explore what tokens are in the CDK and provide an ...

Read more

What is AWS CDK (Cloud Development Kit)

The AWS CDK (Cloud Development Kit) is an open-source software development framework that allows developers to design, compose, and share cloud infrastructure in a familiar programming language. With the AWS CDK, you can design, compose, and share cl...

Read more

Dependency relation in AWS CDK

Sometimes when using the AWS Cloud Development Kit (CDK), the correct order for provisioning resources may not be automatically inferred. For instance, if you have an Amazon Elastic Compute Cloud (EC2), it will depend on your Virtual Private Cloud (V...

Read more