This repo accompanies the tutorial found here.
Note: Egress rules will not be exactly as depicted due to this Terraform issue.
Terraform v0.3.7
terraform apply
ssh ubuntu@<EC2_PUBLIC_IP>
# Create a table so Chartio has something to reflect.
sudo apt-get update
sudo apt-get install -y postgresql-client
psql -h <RDS_HOSTNAME> -p 5432 -d chartio -U chartio -c "CREATE TABLE foo(id int);" # password: chartiovpc
# Install and setup the Connection Client
sudo apt-get install -y python-pip
sudo pip install chartio
chartio_setup