How to connect Codebuild to RDS database?

0

Hi,

My codebuild project should have access to my database. However, it fails to connect.

I have tried following this tutorial: https://ctoasaservice.org/2019/01/23/aws-codebuild-and-access-to-rds/

However it still didn't work. In the security group of my RDS instance I added a TCP inbound rule with: 35.157.127.248/29 using port range 0-65535. which should be the IP address of Codebuild in eu-central-1. What am I doing wrong?

질문됨 2년 전3006회 조회
1개 답변
0

The blog post you are following assumes your rds is accessible from the internet A better practise is to configure your codebuild project to use your VPC - See here.

Basically a network interface for your codebuild job will be provisioned in your vpc and all communication will occur within your vpc (not over internet). The security group assigned to your codebuild project should allow outbound access to rds security group and the security group assigned to rds should allow inbound from the security group you assigned to codebuild project

AWS
전문가
Peter_G
답변함 2년 전
  • Thank you for your help! I followed your instructions and configured my codebuild project to use my VPC. In addition, I added the security group of my backend to the codebuild project and allowed outbound access to rds the rds security group (TCP). I also added inbound connection to the security group of RDS to allow the security group of the backend (and code build).

    Now the building of codebuild actually stops in a phase earlier. In the DOWNLOAD_SOURCE phase it complains about timing out when fetching the source code from S3. I am thinking it is no longer allowed access?

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠