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?

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则