AWS SSH Tunneling
Follow these steps to configure an AWS bastion server to accept an SSH connection from Prequel.
Prerequisites
- A public SSH key to add to the bastion machine to authenticate the SSH connection. Ask your contact at Prequel if they have not already provided one to you.
Step 1: Provision a bastion server
If using SSH tunneling to connect to a source database, we recommend using a standalone bastion server. This step will walk through provisioning the standalone bastion server. If using an existing server, skip to step 2.
- Navigate to the EC2 Instances page, and click Launch instances.
- Select an image. We recommend a default Amazon Linux image, such as the 64-bit (x86) Amazon Linux 2 AMI (the default option).
- Select a type. We recommend the t3.nano. Because this bastion server will be used exclusively for SSH tunneling, Network Performance is the primary consideration. The t3.nano default configuration comes with Network Performance of up to 5 Gigabit, as well as minimal Memory (1 GiB), vCPUs (2) and Storage (8 GB SSD) for about $5/mo depending on region and market rates.
- Click Review and launch. Consider modifying the default security group according to your security policies to enable configuration (e.g., creating the
prequel
user in Step 2). Click Launch. We will further modify the default security group in Step 2. (The remaining default options are sufficient.)
Step 2: Configure the server
Allow SSH port access
In the AWS console, complete the steps below
- Navigate to the EC2 Instances page, and click the instance ID of the server to be used as the bastion host.
- In the Security tab, click the link to one of the security groups. (E.g., the default security group). Make note of this security group, as you will need to allow inbound access to your source DB as part of Step 3.
- In the Inbound rules tab, click "Edit inbound rules".
- Click Add rule. Add an inbound rule of type SSH and whitelist the Prequel static IP. Optionally, add a description. For the correct IP, refer to the Prequel IPs section of the docs. Note: you will not be able to SSH into this machine to configure the
prequel
user unless you also whitelist your machine's IP in the inbound rules. Consider temporarily adding that IP to facilitate the next step.
Create the SSH user
Login to the bastion server and complete the steps below.
- Create group
prequel
:
sudo groupadd prequel
- Create user
prequel
:
sudo useradd -m -g prequel prequel
- Switch to the prequel user:
sudo su - prequel
- Create the
.ssh
directory:
mkdir ~/.ssh
- Set permissions:
chmod 700 ~/.ssh
- Navigate to the
.ssh
directory:
cd ~/.ssh
- Create the
authorized_keys
file:
touch authorized_keys
- Set permissions:
chmod 600 authorized_keys
- Add the public key to the
authorized_keys
file. The key -- including the "ssh-key" and comment -- should be all on one line in the file, without linebreaks.
echo "ssh-key <ssh_public_key_beginning_with_AAAA> prequel-ssh-tunnel-public-key" > authorized_keys
Step 3: Grant DB access to the bastion server
- Within the Inbound rules of the database security group, click Add rule. Add the security group noted in Step 2, and click Save rules.
Updated 11 months ago