Reputation: 13585
I have a Postgres RDS instance running in a private Subnet. It is accessible through a EC2 as a bastion host, as EC2 instance is configured in a public subnet in the same VPC as the private subnet. I can ssh
to the RDS instance through the jump server.
Is there a way I can DBeaver client to the RDS instance? Do I need to configure a VPN connection for that? What are the different options here?
Upvotes: 1
Views: 831
Reputation: 4087
You can stablish a connection to the DB through the jump server using SSH Tunnel:
Configure SSH settings using the fields of the bastion host (use password or private key)
Specify PostgreSQL user/password/endpoint and test the connection
Upvotes: 1