diff --git a/data/workshop/exercise3.mdx b/data/workshop/exercise3.mdx index fd09801..da917f9 100644 --- a/data/workshop/exercise3.mdx +++ b/data/workshop/exercise3.mdx @@ -77,14 +77,14 @@ scp -i disco_key disco_key ec2-user@$PREP_SYSTEM_IP:/home/ec2-user/disco_key To make life a bit easier down the track let's set an environment variable on the prep system so that we can preserve the bastion's IP: ```bash -ssh -i disco_key ec2-user@$PREP_SYSTEM_IP -echo HIGHSIDE_BASTION_IP=$(echo $HIGHSIDE_BASTION_IP) > highside.env +ssh -i disco_key ec2-user@$PREP_SYSTEM_IP "echo HIGHSIDE_BASTION_IP=$(echo $HIGHSIDE_BASTION_IP) > highside.env" ``` -Finally - Let's now connect through to our **High side** bastion 🚀 +Finally - Let's now connect all the way through to our **High side** bastion 🚀 ```bash -ssh -i disco_key ec2-user@$HIGHSIDE_BASTION_IP +ssh -t -i disco_key ec2-user@$PREP_SYSTEM_IP "ssh -t -i disco_key ec2-user@$HIGHSIDE_B +ASTION_IP" ``` diff --git a/public/static/images/disconnected/connect-bastion-ec2.gif b/public/static/images/disconnected/connect-bastion-ec2.gif new file mode 100644 index 0000000..3b91c96 Binary files /dev/null and b/public/static/images/disconnected/connect-bastion-ec2.gif differ