| | |

AWS Create a VPC

Overview

Create a VPC in AWS

Create a VPC

Create a VPC first as follows

Add a routing table to be connected to internet

Router table:

click on Edit routes (need to add an internet gateway)

Add a new route and add Internet Gateway

Subnets

To deploy to more than one availability zone, we need to add more subnets. Lets add one more here:

Click on "Subnets" from left

The click "Create Subnet" and add anew subnet with different name, availability zone and CIDR block. Earlier we added 10.0.0.0/24 and now its 10.0.1.0/24

Similar Posts

  • | | |

    Docker Commands

    Overview Commonly user docker commands for quick access Basic Docker version docker version Docker Info docker info Containers Docker Run docker run {image-name} Common parameters: -d : Detached mode–name : Name -it : Interactive mode Start a simple web-server: You can see the result @ http://localhost:8080/ Start to terminal / bash in interactive mode Ctr…

  • |

    Aws Core Services

    Overview To identify some of the most commonly used services by developers Elastic Cloud Compute (EC2) Amazon EC2 is a web service that provides secure, resizable compute capacity in the cloud. https://aws.amazon.com/ec2/ Simple Storage Service (S3) Amazon S3 is an object storage service that offers scalability, data availability, security, and performance. https://aws.amazon.com/s3/ Relational Database Service…

  • |

    Leveraging the BFF Pattern

    Improve your UI development with the Backend-for-Frontend pattern. Introduction he Backend-for-Frontend (BFF) pattern has become increasingly popular in modern web development, offering numerous benefits to developers and improving user experiences. This article will guide you through implementing the BFF pattern in a UI project with TypeScript, complete with sample code . Understanding the BFF Pattern…

  • |

    AWS Cloudwatch

    Overview AWS Cloudwatch is a monitoring tool that let you sleep peacefully while doing the watch for you. You can use it set Alarms & Notifications and do actions in response to events, You can get alerts regarding your EC2 instance, Billing updates or other resources. You can also set actions in response to CloudWatch…

  • |

    AWS Create an EC2 Instance

    Overview Create an EC2 instance for Spring boot application Create EC2 Lets create an EC2 instance. Goto EC2 dashboard and click on “Launch Instance” Select the Instance Type and click Next. We are going with free tier here: Next screen : Start with 1 instanceNetwork – select joan-vpcSubet – Either oneOther options leave for now…

Leave a Reply

Your email address will not be published. Required fields are marked *