At some point we may want to make our machines more reliable. Application Load Balancer (ALB) provides a OSI Layer 7 Load balancer. With this we can handle the traffic for our EC2, microservices and containers. We can also handle different types of ...
AWS Gateway VPC endpoints allow us to setup private access to the s3 buckets we control and restrict access. What do we need? CDK. see on how to set it up. A Vpc with subnets that need access to s3. // vpcendpoint-stack.ts const vpc = ec2.Vpc.fromLo...
Now that we have some VPC flow logs lets get into the different destinations. Based on the current documentation CloudWatch could have an additional delay of 5 minutes and S3 could have an additional delay of 10 minutes (based on the aggregation inte...
As part of the networking journey in AWS you'll come across VPC flow logs. Why do we need VPC flow logs ? Well they help with: Monitoring Debugging Setting appropriate access Determining flow of traffic We can use the console for creating the VPC ...