简体   繁体   中英

How can I connect Google Data Studio to an AWS RDS Postgres instance?

When I go to make a new data source in Data Studio, I'm prompted to enter the client/server certificates to make a secure connection. Where can I get this client certificate and key? How can I allow Google Data Studio to connect to my RDS instance?

在此处输入图像描述

Do the following:

  1. Add the Google IP addresses to your RDS security group inbound rule list.

  2. Generate a self-signed cert. This answer provides instructions.

openssl req -newkey rsa:2048 -nodes -keyout client.key -x509 -days 365 -out client.crt

  1. Get the correct server PEM file for your region from AWS

  2. Add your database user information to the form and attach your client.crt , client.key and AWS pem files. 在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM