-
Notifications
You must be signed in to change notification settings - Fork 570
/
vpc-sg-import-rules-cloudfront.sh
executable file
·261 lines (233 loc) · 7.28 KB
/
vpc-sg-import-rules-cloudfront.sh
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/usr/bin/env bash
# Create VPC Security Group with CloudFront IP ranges
# Get current list of CloudFront IP ranges
IPLIST=$(curl -s https://ip-ranges.amazonaws.com/ip-ranges.json | jq '.prefixes | .[] | select(.service=="CLOUDFRONT") | .ip_prefix' | cut -d \" -f2 | sort)
# Set Variables
GROUPNAME="CloudFront"
DESCR="CloudFront IP Ranges"
VPCID="YOUR-VPC-ID-HERE"
PROTO="tcp"
PORT="443"
TOTALIPS=$(echo "$IPLIST" | wc -l)
# Debug Mode
DEBUGMODE="0"
# Functions
# Check Command
function check_command(){
for command in "$@"
do
type -P $command &>/dev/null || fail "Unable to find $command, please install it and run this script again."
done
}
# Completed
function completed(){
echo
HorizontalRule
tput setaf 2; echo "Completed!" && tput sgr0
HorizontalRule
echo
}
# Fail
function fail(){
tput setaf 1; echo "Failure: $*" && tput sgr0
exit 1
}
# Horizontal Rule
function HorizontalRule(){
echo "============================================================"
}
# Pause
function pause(){
echo
read -n 1 -s -p "Press any key to continue..."
echo
echo
}
# Verify AWS CLI Credentials are setup
# http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html
if ! grep -q aws_access_key_id ~/.aws/config; then
if ! grep -q aws_access_key_id ~/.aws/credentials; then
fail "AWS config not found or CLI not installed. Please run \"aws configure\"."
fi
fi
# Check for AWS CLI profile argument passed into the script
# http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-multiple-profiles
if [ $# -eq 0 ]; then
scriptname=`basename "$0"`
echo "Usage: ./$scriptname profile"
echo "Where profile is the AWS CLI profile name"
echo "Using default profile"
echo
profile=default
else
profile=$1
fi
# Validate VPC ID
function validateVPCID(){
if [[ $DEBUGMODE = "1" ]]; then
echo "function validateVPCID"
fi
if [ "$VPCID" = "YOUR-VPC-ID-HERE" ] || [ -z "$VPCID" ]; then
# Count number of VPCs
DESCRIBEVPCS=$(aws ec2 describe-vpcs --profile $profile 2>&1)
if [ ! $? -eq 0 ]; then
fail "$DESCRIBEVPCS"
fi
if echo $DESCRIBEVPCS | egrep -iq "error|not"; then
fail "$DESCRIBEVPCS"
fi
NUMVPCS=$(echo $DESCRIBEVPCS | jq '.Vpcs | length')
if [ ! $? -eq 0 ]; then
fail "$NUMVPCS"
fi
if echo $NUMVPCS | egrep -iq "error|not|invalid"; then
fail "$NUMVPCS"
fi
# If only one VPC, use that ID
if [ "$NUMVPCS" -eq "1" ]; then
VPCID=$(echo "$DESCRIBEVPCS" | jq '.Vpcs | .[] | .VpcId' | cut -d \" -f2)
if [ ! $? -eq 0 ]; then
fail "$VPCID"
fi
else
FOUNDVPCS=$(echo "$DESCRIBEVPCS" | jq '.Vpcs | .[] | .VpcId' | cut -d \" -f2)
if [ ! $? -eq 0 ]; then
fail "$FOUNDVPCS"
fi
if echo $FOUNDVPCS | egrep -iq "error|not|invalid"; then
fail "$FOUNDVPCS"
fi
HorizontalRule
echo "Found VPCs:"
HorizontalRule
# Get VPC Names
for vpcid in $FOUNDVPCS; do
echo $vpcid - Name: $(aws ec2 describe-tags --filters "Name=resource-id,Values=$vpcid" "Name=key,Values=Name" --profile $profile 2>&1 | jq '.Tags | .[] | .Value' | cut -d \" -f2)
done
echo
read -r -p "Please specify VPC ID (ex. vpc-abcd1234): " VPCID
if [ -z "$VPCID" ]; then
fail "Must specify a valid VPC ID."
fi
fi
fi
CHECKVPC=$(aws ec2 describe-vpcs --vpc-ids "$VPCID" --profile $profile 2>&1)
if [ ! $? -eq 0 ]; then
fail "$CHECKVPC"
fi
if ! echo "$CHECKVPC" | grep -q "available"; then
fail $CHECKVPC
else
tput setaf 2; echo "VPC ID Validated" && tput sgr0
fi
}
# Check for existing security group or create new one
function checkExisting(){
# Group Name Variations
GROUPNAMELOWER=$(echo "$GROUPNAME" | awk '{print tolower($0)}')
GROUPNAMEUPPER=$(echo "$GROUPNAME" | awk '{print toupper($0)}')
GROUPNAMETITLE=$(echo "$GROUPNAMELOWER" | awk '{for (i=1;i<=NF;i++) $i=toupper(substr($i,1,1)) substr($i,2)} 1')
if [[ $DEBUGMODE = "1" ]]; then
echo "GROUPNAME: $GROUPNAME"
echo "GROUPNAMELOWER: $GROUPNAMELOWER"
echo "GROUPNAMEUPPER: $GROUPNAMEUPPER"
echo "GROUPNAMETITLE: $GROUPNAMETITLE"
fi
DESCRIBEGROUPS=$(aws ec2 describe-security-groups --filters Name=vpc-id,Values="$VPCID" --output=json --profile $profile 2>&1)
if [ ! $? -eq 0 ]; then
fail "$DESCRIBEGROUPS"
fi
if echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAME'")' | egrep -iq "$GROUPNAME"; then
echo
HorizontalRule
tput setaf 1; echo "Group $GROUPNAME Already Exists" && tput sgr0
GROUPID=$(echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAME'") | .GroupId' | cut -d \" -f2)
deleteExisting
fi
if echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAMELOWER'")' | egrep -iq "$GROUPNAMELOWER"; then
echo
HorizontalRule
tput setaf 1; echo "Group $GROUPNAMELOWER Already Exists" && tput sgr0
GROUPID=$(echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAMELOWER'") | .GroupId' | cut -d \" -f2)
deleteExisting
fi
if echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAMEUPPER'")' | egrep -iq "$GROUPNAMEUPPER"; then
echo
HorizontalRule
tput setaf 1; echo "Group $GROUPNAMEUPPER Already Exists" && tput sgr0
GROUPID=$(echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAMEUPPER'") | .GroupId' | cut -d \" -f2)
deleteExisting
fi
if echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAMETITLE'")' | egrep -iq "$GROUPNAMETITLE"; then
echo
HorizontalRule
tput setaf 1; echo "Group $GROUPNAMETITLE Already Exists" && tput sgr0
GROUPID=$(echo "$DESCRIBEGROUPS" | jq '.SecurityGroups | .[] | select(.GroupName=="'$GROUPNAMETITLE'") | .GroupId' | cut -d \" -f2)
deleteExisting
fi
}
# Delete existing group
function deleteExisting(){
if [[ $DEBUGMODE = "1" ]]; then
echo DEBUG EXISTING GROUPID: "$GROUPID"
fi
read -r -p "Do you want to delete the group and recreate it? (y/n) " DELETEGROUP
if [[ $DELETEGROUP =~ ^([yY][eE][sS]|[yY])$ ]]; then
echo
HorizontalRule
echo "Deleting Security Group ID: $GROUPID"
HorizontalRule
DELETEGROUP=$(aws ec2 delete-security-group --group-id "$GROUPID" --profile $profile 2>&1)
if [ ! $? -eq 0 ]; then
fail "$GROUPID"
fi
if echo $DELETEGROUP | grep -q error; then
fail $DELETEGROUP
fi
completed
else
echo "Canceled."
exit 1
fi
}
# Create Security Group
function createGroup(){
echo
HorizontalRule
echo "Creating Security Group "$GROUPNAME
GROUPID=$(aws ec2 create-security-group --group-name "$GROUPNAME" --description "$DESCR" --vpc-id "$VPCID" --profile $profile 2>&1)
if [ ! $? -eq 0 ]; then
fail "$GROUPID"
else
GROUPID=$(echo "$GROUPID" | jq '.GroupId' | cut -d \" -f2)
fi
echo "ID: $GROUPID"
TAGS=$(aws ec2 create-tags --resources "$GROUPID" --tags Key=Name,Value="$GROUPNAME" --profile $profile 2>&1)
if [ ! $? -eq 0 ]; then
fail "$TAGS"
fi
HorizontalRule
}
# Add Rules to Security Group
function addRules(){
echo
HorizontalRule
echo "Adding rules to VPC Security Group "$GROUPNAME
echo "Records to be created: "$TOTALIPS
HorizontalRule
echo
for ip in $IPLIST
do
RESULT=$(aws ec2 authorize-security-group-ingress --group-id "$GROUPID" --protocol $PROTO --port $PORT --cidr "$ip" --profile $profile 2>&1)
if [ ! $? -eq 0 ]; then
fail "$RESULT"
fi
done
completed
}
# Check required commands
check_command curl jq
validateVPCID
checkExisting
createGroup
addRules