mirror of
https://github.com/ivanilves/xiringuito.git
synced 2025-05-27 20:40:19 -07:00
13 lines
276 B
Bash
Executable File
13 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Route discovery primer for AWS
|
|
#
|
|
if [[ ${#} != 1 ]]; then
|
|
echo "Usage: ${0} SSH_SERVER"
|
|
exit 1
|
|
fi
|
|
|
|
export AWS_PROFILE=$(echo ${1} | awk -F"." '{print $2}')
|
|
|
|
aws ec2 describe-subnets | grep CidrBlock\":\ \"10 | awk -F"\"" '{print $4}' | sort | uniq
|