In this post, I am going to explain how we can scan docker images for vulnerabilities from a CI/CD pipeline. I use AWS CodePipeline to scan Docker images stored in AWS ECR. Refer to the original article that I published on https://duleendra.medium.com
Category: ECS
Provisioning Multiple ECS Services Using Terraform
In this post, I will show you how we can create an ECS cluster with multiple ECS services using Terraform. Refer to the original article that I published on https://duleendra.medium.com
HTTP API Private Integration with Amazon ECS
In this post, I want to show you the API Gateway private integration feature with an ECS service running inside a private subnet. With this feature, we can easily expose any private API to the outside of the VPC. Refer to the original article that I published on https://duleendra.medium.com
Creating an ECS Scheduled Task Using AWS CDK
Amazon ECS supports creating scheduled tasks. Scheduled tasks use Amazon EventBridge rules to run tasks. In this example, I will show you how we can run a simple cron job using the ECS schedule task. Refer to the original article that I published on https://duleendra.medium.com
ECS Service Communication Using an Internal Load Balancer
When you deploy microservices on to ECS, handling internal communication between containers is a challenging task. However, AWS has provided few options to address this concern such as using service discovery, internal load balancer, or using a service mesh. In this article, I will show you how we can use an internal load balancer for…