-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.sh
More file actions
executable file
·64 lines (56 loc) · 1.34 KB
/
script.sh
File metadata and controls
executable file
·64 lines (56 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env bash
set -eu
function usage_message() {
echo "Usage: script -k bastion_key> -i <bastion_ip> -u <bastion_user> -K <ec2_key> -I <ec2_ip> -U <ec2_user>" 1>&2
}
if [ $# -eq 0 ]; then
usage_message
exit 1
fi
while getopts ":k:i:u:K:I:U:" opt; do
case ${opt} in
k)
BASTION_KEY=${OPTARG}
;;
i)
BASTION_IP=${OPTARG}
;;
u)
BASTION_USER=${OPTARG}
;;
K)
EC2_KEY=${OPTARG}
;;
I)
EC2_IP=${OPTARG}
;;
U)
EC2_USER=${OPTARG}
;;
:)
echo "Invalid option: -${OPTARG} requires an argument" 1>&2
usage_message
exit 1
;;
\?)
echo "Unimplemented option: -${OPTARG}" 1>&2
usage_message
exit 1
;;
esac
done
shift $((OPTIND -1))
sleep 60;
scp -i ${EC2_KEY} -o ProxyCommand="ssh -i ${BASTION_KEY} -W %h:%p ${BASTION_USER}@${BASTION_IP}" \
-o StrictHostKeyChecking=no \
-o UserKnownHostsFile=/dev/null \
~/.ssh/id_ecdsa.pub ${EC2_USER}@${EC2_IP}:
ssh -t -i ${EC2_KEY} -o ProxyCommand="ssh -i ${BASTION_KEY} -W %h:%p ${BASTION_USER}@${BASTION_IP}" ${EC2_USER}@${EC2_IP} \
-o StrictHostKeyChecking=no \
-o UserKnownHostsFile=/dev/null \
"sudo mount /dev/xvdz1 /mnt;" \
"sudo cat id_ecdsa.pub > /mnt/home/${EC2_USER}/.ssh/authorized_keys;" \
"rm id_ecdsa.pub;" \
"sudo umount /mnt"
echo "Finished running script" 1>&2
exit 0